From 1e766b53a7f090d7d338cd777f362d73203b315c Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 14 Jul 2023 01:41:37 +0300 Subject: [PATCH] remove "slow" text from Enhanced Resolution Perhaps it made sense back in 2011, but now there is plenty of hardware that can do it without any slowdowns. --- frontend/libretro_core_options.h | 6 +++--- frontend/menu.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h index 012a918a..8df76c27 100644 --- a/frontend/libretro_core_options.h +++ b/frontend/libretro_core_options.h @@ -455,8 +455,8 @@ struct retro_core_option_v2_definition option_defs_us[] = { }, { "pcsx_rearmed_neon_enhancement_enable", - "(GPU) Enhanced Resolution (Slow)", - "Enhanced Resolution (Slow)", + "(GPU) Enhanced Resolution", + "Enhanced Resolution", "Render games that do not already run in high resolution video modes (480i, 512i) at twice the native internal resolution. Improves the fidelity of 3D models at the expense of increased performance requirements. 2D elements are generally unaffected by this setting.", NULL, "gpu_neon", @@ -471,7 +471,7 @@ struct retro_core_option_v2_definition option_defs_us[] = { "pcsx_rearmed_neon_enhancement_no_main", "(GPU) Enhanced Resolution Speed Hack", "Enhanced Resolution Speed Hack", - "Improves performance when 'Enhanced Resolution (Slow)' is enabled, but reduces compatibility and may cause rendering errors.", + "Improves performance when 'Enhanced Resolution' is enabled, but reduces compatibility and may cause rendering errors.", NULL, "gpu_neon", { diff --git a/frontend/menu.c b/frontend/menu.c index 828cfbaa..f96040a3 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1357,7 +1357,7 @@ static const char *men_gpu_interlace[] = { "Off", "On", "Auto", NULL }; static menu_entry e_menu_plugin_gpu_neon[] = { mee_enum ("Enable interlace mode", 0, pl_rearmed_cbs.gpu_neon.allow_interlace, men_gpu_interlace), - mee_onoff_h ("Enhanced resolution (slow)", 0, pl_rearmed_cbs.gpu_neon.enhancement_enable, 1, h_gpu_neon_enhanced), + mee_onoff_h ("Enhanced resolution", 0, pl_rearmed_cbs.gpu_neon.enhancement_enable, 1, h_gpu_neon_enhanced), mee_onoff_h ("Enhanced res. speed hack", 0, pl_rearmed_cbs.gpu_neon.enhancement_no_main, 1, h_gpu_neon_enhanced_hack), mee_end, }; -- 2.39.2