Removed MGT comments from Pull Request

This commit is contained in:
DavidWyand-GG 2013-01-07 12:41:31 -05:00
parent 4cebb0c406
commit 1d4b723891
3 changed files with 3 additions and 6 deletions

View file

@ -22,7 +22,6 @@
#include "platformX86UNIX/platformX86UNIX.h"
#include "platform/threads/semaphore.h"
//MGT: converted SDL to OS semaphores to remove dependency on SDL in dedicated server
#include <unistd.h>
#include <sys/types.h>
#include <errno.h>
@ -103,4 +102,3 @@ void Semaphore::release()
AssertFatal(mData, "Semaphore::releaseSemaphore - Invalid semaphore.");
sem_post(&mData->semaphore);
}
//MGT: end