]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix up a missed cursor drawpic
authorMario <mario@smbclan.net>
Mon, 8 Feb 2016 21:00:33 +0000 (07:00 +1000)
committerMario <mario@smbclan.net>
Mon, 8 Feb 2016 21:00:33 +0000 (07:00 +1000)
qcsrc/common/minigames/cl_minigames_hud.qc

index e93c95ca6077bed5935373c47bf0e1426f4c3315..6a585e68ed9694e1d12bf0e5e713c65f342b2179 100644 (file)
@@ -685,9 +685,7 @@ void HUD_Minigame_Mouse()
        if ( HUD_MinigameMenu_IsOpened() && HUD_mouse_over(HUD_PANEL(MINIGAME_MENU)) )
                HUD_MinigameMenu_MouseInput();
 
-       vector cursorsize = '32 32 0';
-       drawpic(mousepos-'8 4 0', strcat("gfx/menu/", autocvar_menu_skin, "/cursor.tga"),
-                       cursorsize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+       draw_cursor_normal(mousepos-'8 4 0', '1 1 1', panel_fg_alpha);
 }
 
 bool HUD_Minigame_Showpanels()