From 19a784e63f95b0eb32d252fabb144531f695a983 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 27 May 2013 00:23:19 +0300 Subject: [PATCH] libretro: don't call dfinput_activate too early --- frontend/libretro.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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) -- 2.39.2