aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeepingsnesroms2017-02-07 11:08:15 -0800
committermeepingsnesroms2017-02-07 11:08:15 -0800
commit76996fc381bab16add67413cb7f96797517b5098 (patch)
tree657872a95b68798788a57872780eee85e5b51d7c
parent731139fbfd9fb303f2c5c050f9ff528878bc1371 (diff)
downloadpcsx_rearmed-76996fc381bab16add67413cb7f96797517b5098.tar.gz
pcsx_rearmed-76996fc381bab16add67413cb7f96797517b5098.tar.bz2
pcsx_rearmed-76996fc381bab16add67413cb7f96797517b5098.zip
Fix buggy option being on by default
-rw-r--r--frontend/libretro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 10e9694..fcabfc5 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -42,7 +42,7 @@
#define ISHEXDEC ((buf[cursor]>='0') && (buf[cursor]<='9')) || ((buf[cursor]>='a') && (buf[cursor]<='f')) || ((buf[cursor]>='A') && (buf[cursor]<='F'))
//hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key
-int rebootemu = 0;
+static int rebootemu = 0;
static retro_video_refresh_t video_cb;
static retro_input_poll_t input_poll_cb;
@@ -461,7 +461,7 @@ void retro_set_environment(retro_environment_t cb)
{ "pcsx_rearmed_neon_enhancement_no_main", "Enhanced resolution speed hack; disabled|enabled" },
#endif
{ "pcsx_rearmed_duping_enable", "Frame duping; on|off" },
- { "pcsx_rearmed_show_bios_bootlogo", "Show Bios Bootlogo; on|off" },
+ { "pcsx_rearmed_show_bios_bootlogo", "Show Bios Bootlogo(Breaks some games); off|on" },
{ "pcsx_rearmed_spu_reverb", "Sound: Reverb; on|off" },
{ "pcsx_rearmed_spu_interpolation", "Sound: Interpolation; simple|gaussian|cubic|off" },
{ "pcsx_rearmed_pe2_fix", "Parasite Eve 2/Vandal Hearts 1/2 Fix; disabled|enabled" },