Use V_ORANGEMAP for blinking WANTED text in Battle splitscreen

This commit is contained in:
TehRealSalt 2018-10-28 01:50:27 -04:00
parent 84c9dbfcce
commit a885f340ae
1 changed files with 1 additions and 1 deletions

View File

@ -6601,7 +6601,7 @@ static void K_drawKartWanted(void)
if (splitscreen) // Can't fit the poster on screen, sadly
{
if (K_IsPlayerWanted(stplyr) && leveltime % 10 > 3)
V_DrawRightAlignedString(WANT_X, WANT_Y, K_calcSplitFlags(V_SNAPTOBOTTOM|V_SNAPTORIGHT|V_HUDTRANS|V_REDMAP), "WANTED");
V_DrawRightAlignedString(WANT_X, WANT_Y, K_calcSplitFlags(V_SNAPTOBOTTOM|V_SNAPTORIGHT|V_HUDTRANS|V_ORANGEMAP), "WANTED");
return;
}