Fix that thing where you-know-who didn't have a lives icon.

This commit is contained in:
toasterbabe 2017-08-09 22:51:29 +01:00
parent 8175e0836e
commit 709a43d3be
1 changed files with 2 additions and 2 deletions

View File

@ -1155,7 +1155,7 @@ UINT8 R_GetColorByName(const char *name)
for (color = 1; color < MAXSKINCOLORS; color++)
if (!stricmp(Color_Names[color], name))
return color;
return 0;
return SKINCOLOR_GREEN;
}
UINT8 R_GetSuperColorByName(const char *name)
@ -1166,7 +1166,7 @@ UINT8 R_GetSuperColorByName(const char *name)
for (color = 0; color < NUMSUPERCOLORS; color++)
if (!stricmp(Color_Names[color + MAXSKINCOLORS], name))
return ((color*5) + MAXSKINCOLORS);
return 0;
return SKINCOLOR_SUPERGOLD1;
}
// ==========================================================================