X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sys.h;h=eb99088fee0c5c7100d36743c375a7725f787ce0;hp=ea711f661e7f00a5687988a76f9869f175108a27;hb=1e01840681f92f425aa17e1a18c7dfcf3bf80e40;hpb=c6d7670ed439522ba8be3959a0315cb8c4039a7f diff --git a/sys.h b/sys.h index ea711f66..eb99088f 100644 --- a/sys.h +++ b/sys.h @@ -192,8 +192,6 @@ void* Sys_GetProcAddress (dllhandle_t handle, const char* name); int Sys_CheckParm (const char *parm); -/// called early in Host_Init -void Sys_InitConsole (void); /// called after command system is initialized but before first Con_Print void Sys_Init_Commands (void); @@ -209,8 +207,8 @@ char *Sys_TimeString(const char *timeformat); void Sys_Error (const char *error, ...) DP_FUNC_PRINTF(1) DP_FUNC_NORETURN; /// (may) output text to terminal which launched program -void Sys_PrintToTerminal(const char *text); -void Sys_PrintfToTerminal(const char *fmt, ...); +void Sys_Print(const char *text); +void Sys_Printf(const char *fmt, ...); /// INFO: This is only called by Host_Shutdown so we dont need testing for recursion void Sys_Shutdown (void);