]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys.h
in X11, keypad * is KP_MULTIPLY, not '*'
[xonotic/darkplaces.git] / sys.h
diff --git a/sys.h b/sys.h
index 278c7982fa8f545e0aacd8b61ae361c821783f8a..41deb0170ee6934b7009c5d89e44c0524ce56f35 100644 (file)
--- a/sys.h
+++ b/sys.h
@@ -61,7 +61,7 @@ char *Sys_TimeString(const char *timeformat);
 //
 // system IO interface (these are the sys functions that need to be implemented in a new driver atm)
 //
-void Sys_Error (const char *error, ...);
+void Sys_Error (const char *error, ...) DP_FUNC_PRINTF(1);
 // an error will cause the entire program to exit
 
 void Sys_PrintToTerminal(const char *text);
@@ -74,7 +74,7 @@ double Sys_DoubleTime (void);
 
 char *Sys_ConsoleInput (void);
 
-void Sys_Sleep(int milliseconds);
+void Sys_Sleep(int microseconds);
 // called to yield for a little bit so as
 // not to hog cpu when paused or debugging