Merge pull request #1915 from elfprince13/fixedSemaphoreStructToClass

Fixed semaphore struct to class
This commit is contained in:
Anis 2017-01-07 02:16:12 +01:00 committed by GitHub
commit 1c9bc20899

View file

@ -25,8 +25,9 @@
#include <SDL.h>
#include <SDL_thread.h>
struct PlatformSemaphore
class PlatformSemaphore
{
public:
SDL_sem *semaphore;
PlatformSemaphore(S32 initialCount)