Skip to content
Snippets Groups Projects
Commit f0bd8c68 authored by sphere's avatar sphere Committed by sphere
Browse files

Replace "Game paused" text with a top-right aligned pause icon.

parent 82a8a0f4
No related branches found
No related tags found
No related merge requests found
...@@ -562,20 +562,9 @@ static void D_Display(void) ...@@ -562,20 +562,9 @@ static void D_Display(void)
// draw pause pic // draw pause pic
if (paused && cv_showhud.value && (!menuactive || netgame)) if (paused && cv_showhud.value && (!menuactive || netgame))
{ {
#if 0
INT32 py;
patch_t *patch; patch_t *patch;
if (automapactive)
py = 4;
else
py = viewwindowy + 4;
patch = W_CachePatchName("M_PAUSE", PU_PATCH); patch = W_CachePatchName("M_PAUSE", PU_PATCH);
V_DrawScaledPatch(viewwindowx + (BASEVIDWIDTH - patch->width)/2, py, 0, patch); V_DrawScaledPatch(BASEVIDWIDTH - (patch->width + 1), 1, V_SNAPTOTOP|V_SNAPTORIGHT, patch);
#else
INT32 y = ((automapactive) ? (32) : (BASEVIDHEIGHT/2));
M_DrawTextBox((BASEVIDWIDTH/2) - (60), y - (16), 13, 2);
V_DrawCenteredString(BASEVIDWIDTH/2, y - (4), V_YELLOWMAP, "Game Paused");
#endif
} }
// vid size change is now finished if it was on... // vid size change is now finished if it was on...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment