summaryrefslogtreecommitdiff
path: root/dedicated.c
diff options
context:
space:
mode:
Diffstat (limited to 'dedicated.c')
-rw-r--r--dedicated.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dedicated.c b/dedicated.c
index 414f2c394..b05c3b542 100644
--- a/dedicated.c
+++ b/dedicated.c
@@ -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