From d56dec79e7b715aa08cc5338f1e1369db45ef5ae Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 10 Jul 2014 01:03:02 -0700 Subject: [PATCH] Fix function prototype for GBAThreadInterrupt --- src/gba/gba-thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/gba-thread.h b/src/gba/gba-thread.h index 5a04d2fb8..36d4ce985 100644 --- a/src/gba/gba-thread.h +++ b/src/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);