applied patch mt5

master
OmniStudent 2014-05-04 10:58:03 +02:00
parent 8f2a45c2f5
commit 1b5d24a5b2
4 changed files with 2 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
minetest/src/.DS_Store vendored

Binary file not shown.

View File

@ -56,7 +56,7 @@ private:
#else
semaphore_t m_semaphore;
#endif
int semcount = 0;
int semcount;
};

View File

@ -75,6 +75,7 @@ JSemaphore::JSemaphore() {
int sem_init_retval = sem_init(&m_semaphore,0,0);
assert(sem_init_retval == 0);
UNUSED(sem_init_retval);
semcount = 0;
}
JSemaphore::~JSemaphore() {