(svn r1610) Remove trailing whitespace (last time ever, i hope)

This commit is contained in:
tron
2005-01-23 13:09:35 +00:00
parent 80131e1e4a
commit 44f48ce915
16 changed files with 39 additions and 39 deletions

View File

@@ -105,7 +105,7 @@ void WINAPI CheckForConsoleInput(void)
void CreateWindowsConsoleThread(void)
{
/* Create event to signal when console input is ready */
hEvent = CreateEvent(NULL, false, false, "keyboard input");
hEvent = CreateEvent(NULL, false, false, "keyboard input");
hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, 0, 0, NULL);
if (hThread == NULL)
@@ -151,7 +151,7 @@ static void DedicatedVideoStop(void)
#ifdef WIN32
CloseWindowsConsoleThread();
#endif
free(_dedicated_video_mem);
free(_dedicated_video_mem);
}
static void DedicatedVideoMakeDirty(int left, int top, int width, int height) {}
@@ -183,7 +183,7 @@ static bool InputWaiting(void)
{
if (WaitForSingleObject(hEvent, 1) == WAIT_OBJECT_0)
return true;
return false;
}
#endif