src/video/dedicated_v.cpp
branchnoai
changeset 10867 5de2923d6e59
parent 10715 6bdf79ffb022
child 11044 097ea3e7ec56
--- a/src/video/dedicated_v.cpp	Sun Jun 08 14:00:40 2008 +0000
+++ b/src/video/dedicated_v.cpp	Sun Jun 08 15:32:10 2008 +0000
@@ -107,10 +107,10 @@
 	/* Create event to signal when console input is ready */
 	_hInputReady = CreateEvent(NULL, false, false, NULL);
 	_hWaitForInputHandling = CreateEvent(NULL, false, false, NULL);
-	if (_hInputReady == NULL || _hWaitForInputHandling == NULL) error("Cannot create console event!");
+	if (_hInputReady == NULL || _hWaitForInputHandling == NULL) usererror("Cannot create console event!");
 
 	_hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, NULL, 0, &dwThreadId);
-	if (_hThread == NULL) error("Cannot create console thread!");
+	if (_hThread == NULL) usererror("Cannot create console thread!");
 
 	DEBUG(driver, 2, "Windows console thread started");
 }