From cd98ee730ffd2e0471e746ae22e6f1927cb2e5e7 Mon Sep 17 00:00:00 2001 From: "Thomas \"elfprince13\" Dickerson" Date: Thu, 5 Jan 2017 20:00:33 -0500 Subject: [PATCH] Matched up platform semaphore declarations --- Engine/source/platformSDL/threads/semaphore.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Engine/source/platformSDL/threads/semaphore.cpp b/Engine/source/platformSDL/threads/semaphore.cpp index b31cb3688..af9141e87 100644 --- a/Engine/source/platformSDL/threads/semaphore.cpp +++ b/Engine/source/platformSDL/threads/semaphore.cpp @@ -25,8 +25,9 @@ #include #include -struct PlatformSemaphore +class PlatformSemaphore { +public: SDL_sem *semaphore; PlatformSemaphore(S32 initialCount)