Skip to content
Snippets Groups Projects
Commit 6fd645ef authored by James R.'s avatar James R.
Browse files

A-arrows on Record Attack level select

Menu code sucks, did you know?
parent 0be37434
Branches
Tags
No related merge requests found
...@@ -8331,7 +8331,18 @@ void M_DrawTimeAttackMenu(void) ...@@ -8331,7 +8331,18 @@ void M_DrawTimeAttackMenu(void)
else else
PictureOfLevel = W_CachePatchName("BLANKLVL", PU_CACHE); PictureOfLevel = W_CachePatchName("BLANKLVL", PU_CACHE);
V_DrawSmallScaledPatch(208, 32+lsheadingheight, 0, PictureOfLevel); y = 32+lsheadingheight;
V_DrawSmallScaledPatch(208, y, 0, PictureOfLevel);
if (itemOn == talevel)
{
/* Draw arrows !! */
y = y + 25 - 4;
V_DrawCharacter(208 - 10 - (skullAnimCounter/5), y,
'\x1C' | V_YELLOWMAP, false);
V_DrawCharacter(208 + 80 + 2 + (skullAnimCounter/5), y,
'\x1D' | V_YELLOWMAP, false);
}
V_DrawString(104 - 72, 32+lsheadingheight/2, 0, "* LEVEL RECORDS *"); V_DrawString(104 - 72, 32+lsheadingheight/2, 0, "* LEVEL RECORDS *");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment