mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
MP Postboss: strnicmp -> boolean remove cast (buildbots)
This commit is contained in:
parent
73925fe590
commit
dede6696ca
1 changed files with 1 additions and 1 deletions
|
|
@ -3536,7 +3536,7 @@ void A_BossDeath(mobj_t *mo)
|
||||||
{
|
{
|
||||||
// Touching the egg trap button calls P_DoPlayerExit, which calls P_RestoreMusic.
|
// Touching the egg trap button calls P_DoPlayerExit, which calls P_RestoreMusic.
|
||||||
// So just park ourselves in the mapmus variables.
|
// So just park ourselves in the mapmus variables.
|
||||||
boolean changed = (boolean)strnicmp(mapheaderinfo[gamemap-1]->musname, mapmusname, 7);
|
boolean changed = strnicmp(mapheaderinfo[gamemap-1]->musname, mapmusname, 7);
|
||||||
strncpy(mapmusname, mapheaderinfo[gamemap-1]->muspostbossname, 7);
|
strncpy(mapmusname, mapheaderinfo[gamemap-1]->muspostbossname, 7);
|
||||||
mapmusname[6] = 0;
|
mapmusname[6] = 0;
|
||||||
mapmusflags = (mapheaderinfo[gamemap-1]->muspostbosstrack & MUSIC_TRACKMASK) | MUSIC_RELOADRESET;
|
mapmusflags = (mapheaderinfo[gamemap-1]->muspostbosstrack & MUSIC_TRACKMASK) | MUSIC_RELOADRESET;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue