mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-10 15:46:05 +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
|
||||
brief = mapheaderinfo[mapnum]->ghostBrief[numstaff];
|
||||
lumpname = W_CheckNameForNumPwad(brief->wad, brief->lump);
|
||||
strcpy_s(dname, sizeof(dname), lumpname);
|
||||
strlcpy(dname, lumpname, sizeof(dname));
|
||||
|
||||
loadreplay:
|
||||
demo.title = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue