From c86d4813dbade0bc37b7a42c88b633dadb9563ee Mon Sep 17 00:00:00 2001 From: meancoot Date: Sun, 30 Jun 2013 20:31:53 -0400 Subject: [PATCH] (iOS) Don't cause a context reset after the games first frame --- ios/RetroArch/main.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ios/RetroArch/main.m b/ios/RetroArch/main.m index 0d77321973..d563d13edb 100644 --- a/ios/RetroArch/main.m +++ b/ios/RetroArch/main.m @@ -259,11 +259,12 @@ static void event_reload_config(void* userdata) if (!_isRunning) { [self pushViewController:RAGameView.get animated:NO]; - _isRunning = true; _module = module; [RASettingsList refreshModuleConfig:_module]; + _isRunning = true; + btpad_set_inquiry_state(false); struct rarch_main_wrap* load_data = malloc(sizeof(struct rarch_main_wrap));