aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/gos_win32.c')
-rw-r--r--src/gos/gos_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gos/gos_win32.c b/src/gos/gos_win32.c
index 1aa13dd6..11b2e0aa 100644
--- a/src/gos/gos_win32.c
+++ b/src/gos/gos_win32.c
@@ -74,7 +74,7 @@ void gfxSystemUnlock(void) {
ReleaseMutex(SystemMutex);
}
-bool_t gfxSemWait(gfxSem *psem, delaytime_t ms) {
+gBool gfxSemWait(gfxSem *psem, delaytime_t ms) {
return WaitForSingleObject(*psem, ms) == WAIT_OBJECT_0;
}