From: notaz Date: Sun, 26 May 2013 21:23:19 +0000 (+0300) Subject: libretro: don't call dfinput_activate too early X-Git-Tag: r20~67 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=19a784e63f95b0eb32d252fabb144531f695a983 libretro: don't call dfinput_activate too early --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 1e9929de..644db92d 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -652,6 +652,7 @@ bool retro_load_game(const struct retro_game_info *info) } plugin_call_rearmed_cbs(); + dfinput_activate(); Config.PsxAuto = 1; if (CheckCdrom() == -1) { @@ -791,9 +792,9 @@ static void update_variables(bool in_flight) GPU_close(); GPU_open(&gpuDisp, "PCSX", NULL); } - } - dfinput_activate(); + dfinput_activate(); + } } void retro_run(void)