This website works better with JavaScript
Home
Explore
Help
Sign In
TorqueEngine
/
Torque2D
mirror of
https://github.com/TorqueGameEngines/Torque2D.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Use int instead of bool for pthread lock check
James Urquhart
11 years ago
parent
039f5b1754
commit
739dbedafb
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
engine/source/platformiOS/iOSMutex.mm
+ 1
- 1
engine/source/platformiOS/iOSMutex.mm
View File
@@ -62,7 +62,7 @@ Mutex::~Mutex()
bool Mutex::lock( bool block)
{
-
bool
ok;
+
int
ok;
if(block)
{