Skip to content

Commit 1cd9fd4

Browse files
committed
Correction to previous commit
1 parent 4b6291f commit 1cd9fd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/st_stuff.c‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,8 +1013,6 @@ boolean ST_Responder(event_t *ev)
10131013
{
10141014
epsd = buf[0] - '0';
10151015
map = buf[1] - '0';
1016-
M_snprintf(lump, sizeof(lump), "%c%cM%c", (FREEDOOM ? 'C' : 'E'),
1017-
buf[0], buf[1]);
10181016
}
10191017

10201018
if (chex)
@@ -1036,6 +1034,8 @@ boolean ST_Responder(event_t *ev)
10361034
if (BTSX)
10371035
M_snprintf(lump, sizeof(lump), "E%iM%c%c", (BTSXE1 ? 1 : 2),
10381036
buf[0], buf[1]);
1037+
else if (FREEDOOM && gamemode != commercial)
1038+
M_snprintf(lump, sizeof(lump), "C%cM%c", buf[0], buf[1]);
10391039

10401040
if (epsd == gameepisode && map == gamemap)
10411041
M_snprintf(message, sizeof(message), s_STSTR_CLEVSAME, lump);

0 commit comments

Comments
 (0)