aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2013-05-27 00:23:19 +0300
committernotaz2013-05-27 00:23:19 +0300
commit19a784e63f95b0eb32d252fabb144531f695a983 (patch)
treefd15fed220b7884b155f3cc7e6ac7c2248f24206 /frontend
parent805fe9bcd363fb6eb76dc82b8d8d72008156ef44 (diff)
downloadpcsx_rearmed-19a784e63f95b0eb32d252fabb144531f695a983.tar.gz
pcsx_rearmed-19a784e63f95b0eb32d252fabb144531f695a983.tar.bz2
pcsx_rearmed-19a784e63f95b0eb32d252fabb144531f695a983.zip
libretro: don't call dfinput_activate too early
Diffstat (limited to 'frontend')
-rw-r--r--frontend/libretro.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 1e9929d..644db92 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)