From: Adrien Plazas Date: Fri, 10 Mar 2017 06:24:33 +0000 (+0100) Subject: libretro: Remove reset in retro_run() hack X-Git-Tag: r24l~799^2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53e4a7e5cb46ad8589825ec95e15b56614cc54d9;p=pcsx_rearmed.git libretro: Remove reset in retro_run() hack Removes a hack breaking deserialization when running retro_reset(), retro_unserialize() and retro_run() in this order, as it silently resets the core just after setting its state. --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 4d56356a..8382b659 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -1308,9 +1308,7 @@ size_t retro_get_memory_size(unsigned id) void retro_reset(void) { - //hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key - rebootemu = 1; - //SysReset(); + SysReset(); } static const unsigned short retro_psx_map[] = { @@ -1517,11 +1515,6 @@ static int min(int a, int b) void retro_run(void) { int i; - //SysReset must be run while core is running,Not in menu (Locks up Retroarch) - if(rebootemu != 0){ - rebootemu = 0; - SysReset(); - } input_poll_cb();