all repos — mgba @ d56dec79e7b715aa08cc5338f1e1369db45ef5ae

mGBA Game Boy Advance Emulator

Fix function prototype for GBAThreadInterrupt
Jeffrey Pfau jeffrey@endrift.com
Thu, 10 Jul 2014 01:03:02 -0700
commit

d56dec79e7b715aa08cc5338f1e1369db45ef5ae

parent

c2fc2dbac3be82175238357464f59112c16f1f94

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/gba/gba-thread.hsrc/gba/gba-thread.h

@@ -84,7 +84,7 @@ int GBAThreadHasStarted(struct GBAThread* threadContext);

void GBAThreadEnd(struct GBAThread* threadContext); void GBAThreadJoin(struct GBAThread* threadContext); -void GBAThreadTryPause(struct GBAThread* threadContext); +void GBAThreadInterrupt(struct GBAThread* threadContext); void GBAThreadContinue(struct GBAThread* threadContext); void GBAThreadPause(struct GBAThread* threadContext);