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

View file

@ -80,11 +80,10 @@ void Cleanup(bool minimal)
}
StdConsole::destroy();
//MGT: removed SDL from dedicated
#ifndef TORQUE_DEDICATED
SDL_Quit();
#endif
//MGT: end
}
//-----------------------------------------------------------------------------

View file

@ -19,7 +19,8 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
//-----------------------------------------------------------------------------
//MGT: not needed on dedicated and help removal of SDL
// Not needed on dedicated (SDL is not not linked against when dedicated)
#ifndef TORQUE_DEDICATED
#include "console/console.h"
#include "platformX86UNIX/platformX86UNIX.h"
@ -455,4 +456,3 @@ void PollRedbookDevices()
#endif // !defined(__FreeBSD__)
}
#endif
//MGT: end