mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 22:10:36 +00:00
Merge pull request #1915 from elfprince13/fixedSemaphoreStructToClass
Fixed semaphore struct to class
This commit is contained in:
commit
1c9bc20899
1 changed files with 2 additions and 1 deletions
|
|
@ -25,8 +25,9 @@
|
|||
#include <SDL.h>
|
||||
#include <SDL_thread.h>
|
||||
|
||||
struct PlatformSemaphore
|
||||
class PlatformSemaphore
|
||||
{
|
||||
public:
|
||||
SDL_sem *semaphore;
|
||||
|
||||
PlatformSemaphore(S32 initialCount)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue