mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 22:11:43 +00:00
- fixed: DIntermissionScreen::Init did not handle non-existent strings in the string table and crashed on a NULL pointer.
This commit is contained in:
parent
49234b1fc3
commit
72a3257400
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ void DIntermissionScreen::Init(FIntermissionAction *desc, bool first)
|
||||||
}
|
}
|
||||||
else if (*texname == '$')
|
else if (*texname == '$')
|
||||||
{
|
{
|
||||||
texname = GStrings[texname+1];
|
texname = GStrings(texname+1);
|
||||||
}
|
}
|
||||||
if (texname[0] != 0)
|
if (texname[0] != 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue