Skip to content

Commit

Permalink
Fix wrong type of parameter to UpdateRunLoop. Do not understand how t…
Browse files Browse the repository at this point in the history
…his compiled.
  • Loading branch information
hrydgard committed May 28, 2016
1 parent 3147f1a commit 0d6ad3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Core.h
Expand Up @@ -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();
Expand Down

1 comment on commit 0d6ad3d

@unknownbrackets
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops. I guess MSVC assumed it was an overload, but not sure how Linux / Blackberry / etc. would've linked...

-[Unknown]

Please sign in to comment.