]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sv_main.c
added Sys_PrintfToTerminal function for convenience, this replaces
[xonotic/darkplaces.git] / sv_main.c
index 26d856950a1e7ac76e50fe26b4f69b3a5ebd3bd9..c99273b1add0f9a448ba8e24f3a3c7de40d58be9 100644 (file)
--- a/sv_main.c
+++ b/sv_main.c
@@ -4009,15 +4009,3 @@ void SV_StopThread(void)
        Thread_DestroyMutex(svs.threadmutex);
        svs.threaded = false;
 }
-
-void SV_LockThreadMutex(void)
-{
-       if (svs.threaded)
-               Thread_LockMutex(svs.threadmutex);
-}
-
-void SV_UnlockThreadMutex(void)
-{
-       if (svs.threaded)
-               Thread_UnlockMutex(svs.threadmutex);
-}