mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 23:42:11 +00:00
Don't skip map completion emblems when skipping record attack emblems.
This commit is contained in:
parent
4f744bc06f
commit
a85b820b44
1 changed files with 2 additions and 2 deletions
|
@ -4223,7 +4223,7 @@ static void M_CentreText(INT32 y, const char *string)
|
|||
//
|
||||
// used by pause & statistics to draw a row of emblems for a map
|
||||
//
|
||||
static void M_DrawMapEmblems(INT32 mapnum, INT32 x, INT32 y, boolean globalonly)
|
||||
static void M_DrawMapEmblems(INT32 mapnum, INT32 x, INT32 y, boolean norecordattack)
|
||||
{
|
||||
UINT8 lasttype = UINT8_MAX, curtype;
|
||||
emblem_t *emblem = M_GetLevelEmblems(mapnum);
|
||||
|
@ -4242,7 +4242,7 @@ static void M_DrawMapEmblems(INT32 mapnum, INT32 x, INT32 y, boolean globalonly)
|
|||
curtype = 0; break;
|
||||
}
|
||||
|
||||
if (globalonly && curtype)
|
||||
if (norecordattack && (curtype == 1 || curtype == 2))
|
||||
{
|
||||
emblem = M_GetLevelEmblems(-1);
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue