mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-01 08:31:14 +00:00
- added null check to the dialogue lines array so that it doesn't crash if the text is never word wrapped.
This commit is contained in:
parent
d420b0ab05
commit
6023b69693
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ class ConversationMenu : Menu
|
||||||
|
|
||||||
override void OnDestroy()
|
override void OnDestroy()
|
||||||
{
|
{
|
||||||
mDialogueLines.Destroy();
|
if (mDialogueLines != null) mDialogueLines.Destroy();
|
||||||
SetMusicVolume (1);
|
SetMusicVolume (1);
|
||||||
Super.OnDestroy();
|
Super.OnDestroy();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue