From 0d6ad3df2f53e64eebb22e7743942af28aaedc24 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 28 May 2016 16:11:02 +0200 Subject: [PATCH] Fix wrong type of parameter to UpdateRunLoop. Do not understand how this compiled. --- Core/Core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Core.h b/Core/Core.h index 5398853de4..3cf96c8575 100644 --- a/Core/Core.h +++ b/Core/Core.h @@ -24,7 +24,7 @@ class GraphicsContext; struct InputState; // called from emu thread -void UpdateRunLoop(GraphicsContext *input_state); +void UpdateRunLoop(InputState *input_state); void Core_Run(GraphicsContext *ctx, InputState *input_state); void Core_Stop(); void Core_ErrorPause();