From e2399c1638816caafc8d0faf6d2e604a59c1e5ff Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 29 Oct 2018 06:57:45 -0400 Subject: [PATCH] Fix Sonic's minimap icon not being properly initialised. (Experimenting with the online editor, since I'm low on time, but this is 100% correct and I'll make a new exe later.) --- src/r_things.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/r_things.c b/src/r_things.c index bd5b8b16..70451f65 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -2519,7 +2519,7 @@ static void Sk_SetDefaultValue(skin_t *skin) strcpy(skin->hudname, "???"); strncpy(skin->facerank, "PLAYRANK", 9); strncpy(skin->facewant, "PLAYWANT", 9); - strncpy(skin->facemmap, "PLAYICON", 9); + strncpy(skin->facemmap, "PLAYMMAP", 9); skin->starttranscolor = 160; skin->prefcolor = SKINCOLOR_GREEN; @@ -2585,7 +2585,7 @@ void R_InitSkins(void) strncpy(skin->facerank, "PLAYRANK", 9); strncpy(skin->facewant, "PLAYWANT", 9); - strncpy(skin->facemmap, "PLAYICON", 9); + strncpy(skin->facemmap, "PLAYMMAP", 9); skin->prefcolor = SKINCOLOR_BLUE; skin->ability = CA_THOK;