Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/knulli-main' into knulli-main
Browse files Browse the repository at this point in the history
  • Loading branch information
acmeplus committed May 9, 2024
2 parents 46c69c7 + b2e0782 commit 403e2a4
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 @@ -4804,6 +4804,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 403e2a4

Please sign in to comment.