]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - in_win.c
rewrite of map texture loading (mainly to do with HL textures and wads)
[xonotic/darkplaces.git] / in_win.c
index 139766d3f5e1154a3aea267fafdcaaecf3ed9baf..9b9f4fcb3626cc35543d0691b0f798d4f3a7d262 100644 (file)
--- a/in_win.c
+++ b/in_win.c
@@ -191,7 +191,7 @@ void IN_ShowMouse (void)
 
        if (!mouseshowtoggle)
        {
-               ShowCursor (TRUE);
+               ShowCursor (true);
                mouseshowtoggle = 1;
        }
 }
@@ -207,7 +207,7 @@ void IN_HideMouse (void)
 
        if (mouseshowtoggle)
        {
-               ShowCursor (FALSE);
+               ShowCursor (false);
                mouseshowtoggle = 0;
        }
 }
@@ -319,8 +319,8 @@ void IN_RestoreOriginalMouseState (void)
 
 // try to redraw the cursor so it gets reinitialized, because sometimes it
 // has garbage after the mode switch
-       ShowCursor (TRUE);
-       ShowCursor (FALSE);
+       ShowCursor (true);
+       ShowCursor (false);
 }