From: notaz Date: Thu, 13 Jul 2023 22:41:37 +0000 (+0300) Subject: remove "slow" text from Enhanced Resolution X-Git-Tag: r24~249 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=6777e331551ed0cc90f4aa809bbd0fee23fcf1a6 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. --- diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h index 7d070f9a..e7c10c1f 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 f78d3d26..f1c78627 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1355,7 +1355,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, };