1
0

Fixed comments in main.cpp and Player.cpp

This commit is contained in:
Tiger Wang
2013-12-24 15:16:30 +00:00
parent c6314e8935
commit ae6cb01e56
2 changed files with 2 additions and 2 deletions

View File

@@ -129,7 +129,7 @@ BOOL CtrlHandler(DWORD fdwCtrlType)
g_TERMINATE_EVENT_RAISED = true;
LOGD("Terminate event raised from the Windows CtrlHandler");
if (fdwCtrlType == CTRL_CLOSE_EVENT) // Console windows closed via 'x' button, Windows will try to close immediately, therefore...
if (fdwCtrlType == CTRL_CLOSE_EVENT) // Console window closed via 'x' button, Windows will try to close immediately, therefore...
{
while (!g_SERVER_TERMINATED) { cSleep::MilliSleep(100); } // Delay as much as possible to try to get the server to shut down cleanly
}