Fix wrong type of parameter to UpdateRunLoop. Do not understand how this compiled.

This commit is contained in:
Henrik Rydgard 2016-05-28 16:11:02 +02:00
parent 3147f1ac95
commit 0d6ad3df2f

View file

@ -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();