Skip to content

Commit

Permalink
Merge pull request #6 from Mikhailzrick/pcsxrearmed-restore-enhancedr…
Browse files Browse the repository at this point in the history
…esolution

pcsxrearmed-restore-enhancedresolution
  • Loading branch information
acmeplus authored May 9, 2024
2 parents 2ad1595 + 161196e commit b2e0782
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2658,9 +2658,16 @@ def generateCoreSettings(coreSettings, system, rom, guns, wheels):
else:
coreSettings.save('pcsx_rearmed_frameskip', '"0"')
# Enhanced resolution at the cost of lower performance
# Speed hack causes game glitches - turn it off.
coreSettings.save('pcsx_rearmed_neon_enhancement_enable', '"disabled"')
coreSettings.save('pcsx_rearmed_neon_enhancement_no_main', '"disabled"')
if system.isOptSet('neon_enhancement') and system.config['neon_enhancement'] != 'disabled':
if system.config['neon_enhancement'] == 'enabled':
coreSettings.save('pcsx_rearmed_neon_enhancement_enable', '"enabled"')
coreSettings.save('pcsx_rearmed_neon_enhancement_no_main', '"disabled"')
elif system.config['neon_enhancement'] == 'enabled_with_speedhack':
coreSettings.save('pcsx_rearmed_neon_enhancement_enable', '"enabled"')
coreSettings.save('pcsx_rearmed_neon_enhancement_no_main', '"enabled"')
else:
coreSettings.save('pcsx_rearmed_neon_enhancement_enable', '"disabled"')
coreSettings.save('pcsx_rearmed_neon_enhancement_no_main', '"disabled"')
# Multitap
if system.isOptSet('pcsx_rearmed_multitap'):
coreSettings.save('pcsx_rearmed_multitap', '"' + system.config['pcsx_rearmed_multitap'] + '"')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4792,6 +4792,13 @@ libretro:
"1": 1
"2": 2
"3": 3
neon_enhancement:
prompt: ENHANCED RENDERING RESOLUTION
description: Double the rendering resolution.
choices:
"Off": disabled
"On": enabled
"On (Speed hack)": enabled_with_speedhack
pcsx_rearmed_multitap:
prompt: MULTITAP
description: Allows up to 5 or 8 controllers in supported games.
Expand Down

0 comments on commit b2e0782

Please sign in to comment.