mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
src/f_finale.c: Fix compiler error
This commit is contained in:
parent
9ee138ac13
commit
e2cbf06fa7
1 changed files with 1 additions and 1 deletions
|
|
@ -1922,7 +1922,7 @@ void F_TitleScreenTicker(boolean run)
|
||||||
// Setup demo name
|
// Setup demo name
|
||||||
brief = mapheaderinfo[mapnum]->ghostBrief[numstaff];
|
brief = mapheaderinfo[mapnum]->ghostBrief[numstaff];
|
||||||
lumpname = W_CheckNameForNumPwad(brief->wad, brief->lump);
|
lumpname = W_CheckNameForNumPwad(brief->wad, brief->lump);
|
||||||
strcpy_s(dname, sizeof(dname), lumpname);
|
strlcpy(dname, lumpname, sizeof(dname));
|
||||||
|
|
||||||
loadreplay:
|
loadreplay:
|
||||||
demo.title = true;
|
demo.title = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue