diff options
author | retro-wertz | 2019-03-25 20:44:43 +0800 |
---|---|---|
committer | retro-wertz | 2019-03-25 20:44:43 +0800 |
commit | 27cf7d3137fd718a1edca1a26b31c56954d771cf (patch) | |
tree | 81c107e464245a4249bb2d4a28f8b97a42277e1d | |
parent | 9c22d064d2b745b7484b8c10927c808bdf1133e9 (diff) | |
download | pcsx_rearmed-27cf7d3137fd718a1edca1a26b31c56954d771cf.tar.gz pcsx_rearmed-27cf7d3137fd718a1edca1a26b31c56954d771cf.tar.bz2 pcsx_rearmed-27cf7d3137fd718a1edca1a26b31c56954d771cf.zip |
Fix bootlogo showing only during reset when enabled
-rw-r--r-- | frontend/libretro.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index c4d6133..e5ce194 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -1588,7 +1588,8 @@ static void update_variables(bool in_flight) dfinput_activate(); } - else{ + else + { //not yet running //bootlogo display hack @@ -1597,10 +1598,13 @@ static void update_variables(bool in_flight) var.key = "pcsx_rearmed_show_bios_bootlogo"; if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value) { + Config.SlowBoot = 0; + rebootemu = 0; if (strcmp(var.value, "enabled") == 0) + { Config.SlowBoot = 1; - else - Config.SlowBoot = 0; + rebootemu = 1; + } } } #ifndef DRC_DISABLE |