Minor aesthetic/alignment tweaks to all three implemented statistics pages while waiting for chicken to defrost

This commit is contained in:
toaster 2023-08-07 18:22:07 +01:00
parent 648a97aaf3
commit 71bbe3f28a

View file

@ -6195,7 +6195,7 @@ static void M_DrawStatsMaps(void)
} }
bottomarrow: bottomarrow:
if (dobottomarrow) if (dobottomarrow)
V_DrawCharacter(10, y-10 + (skullAnimCounter/5), V_DrawCharacter(10, BASEVIDHEIGHT-20 + (skullAnimCounter/5),
'\x1B' | highlightflags, false); // down arrow '\x1B' | highlightflags, false); // down arrow
} }
@ -6250,7 +6250,7 @@ static void M_DrawStatsChars(void)
bottomarrow: bottomarrow:
if (dobottomarrow) if (dobottomarrow)
V_DrawCharacter(10, y-10 + (skullAnimCounter/5), V_DrawCharacter(10, BASEVIDHEIGHT-20 + (skullAnimCounter/5),
'\x1B' | highlightflags, false); // down arrow '\x1B' | highlightflags, false); // down arrow
UINT32 x = BASEVIDWIDTH - 20 - 90; UINT32 x = BASEVIDWIDTH - 20 - 90;
@ -6347,12 +6347,12 @@ static void M_DrawStatsGP(void)
goto bottomarrow; goto bottomarrow;
} }
V_DrawFill(24, y, 21, 20, 31); V_DrawFill(24, y+1, 21, 20, 31);
V_DrawScaledPatch(24-1, y-1, 0, W_CachePatchName(cup->icon, PU_CACHE)); V_DrawScaledPatch(24-1, y, 0, W_CachePatchName(cup->icon, PU_CACHE));
V_DrawScaledPatch(24-1, y-1, 0, W_CachePatchName("CUPBOX", PU_CACHE)); V_DrawScaledPatch(24-1, y, 0, W_CachePatchName("CUPBOX", PU_CACHE));
V_DrawThinString(24+23+2, y + 6, 0, cup->name); V_DrawThinString(24+23+2, y + 7, 0, cup->name);
x = BASEVIDWIDTH - 20 - width; x = BASEVIDWIDTH - 20 - width;
for (j = endj; j >= KARTSPEED_EASY; j--, x -= width) for (j = endj; j >= KARTSPEED_EASY; j--, x -= width)
@ -6360,16 +6360,16 @@ static void M_DrawStatsGP(void)
if (cup->windata[j].best_placement == 0) if (cup->windata[j].best_placement == 0)
{ {
V_DrawCenteredThinString( V_DrawCenteredThinString(
x + 19, y + 7, x + 19, y + 8,
V_GRAYMAP, V_GRAYMAP,
j == KARTSPEED_EASY (j != KARTSPEED_EASY && gamedata->everseenspecial)
? "- - - -" ? "-- -- --"
: "- - - - - -" : "-- --"
); );
continue; continue;
} }
M_DrawCupWinData(x, y + 6, cup, j, false, true); M_DrawCupWinData(x, y + 7, cup, j, false, true);
} }
y += STATSSTEP; y += STATSSTEP;
@ -6380,7 +6380,7 @@ static void M_DrawStatsGP(void)
bottomarrow: bottomarrow:
if (dobottomarrow) if (dobottomarrow)
V_DrawCharacter(10, y-10 + (skullAnimCounter/5), V_DrawCharacter(10, BASEVIDHEIGHT-20 + (skullAnimCounter/5),
'\x1B' | highlightflags, false); // down arrow '\x1B' | highlightflags, false); // down arrow
} }