From 57b0fe7fed8e8218d7c890cd40dea4fa93f121a5 Mon Sep 17 00:00:00 2001 From: radius Date: Tue, 12 Mar 2019 19:54:26 -0500 Subject: [PATCH] fix input --- libretro/libretro.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libretro/libretro.c b/libretro/libretro.c index 3dc33a5..4080293 100644 --- a/libretro/libretro.c +++ b/libretro/libretro.c @@ -827,7 +827,10 @@ void retro_run(void) check_variables(); if (emulated_devices == 2) + { + GB_update_keys_status(&gameboy[0], 0); GB_update_keys_status(&gameboy[1], 1); + } else if (emulated_devices == 1 && (model[0] == MODEL_SGB || model[0] == MODEL_SGB2)) { for (unsigned i = 0; i < 4; i++)