diff options
author | Paul Gilbert | 2018-04-21 07:26:52 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-04-21 07:26:52 -0400 |
commit | 0aeecb6c336ae5f97aee940165fdff8a55bdcdba (patch) | |
tree | 594f2c8cdb3e56725c958a726b72fe6278c9ec9f /engines/xeen/dialogs | |
parent | ea524fa7928813585f666d2f64e57253c464bb60 (diff) | |
download | scummvm-rg350-0aeecb6c336ae5f97aee940165fdff8a55bdcdba.tar.gz scummvm-rg350-0aeecb6c336ae5f97aee940165fdff8a55bdcdba.tar.bz2 scummvm-rg350-0aeecb6c336ae5f97aee940165fdff8a55bdcdba.zip |
XEEN: Swords changes for game flags array
Diffstat (limited to 'engines/xeen/dialogs')
-rw-r--r-- | engines/xeen/dialogs/dialogs_quests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/dialogs/dialogs_quests.cpp b/engines/xeen/dialogs/dialogs_quests.cpp index 31d0bdf8d3..ebf15e9c6c 100644 --- a/engines/xeen/dialogs/dialogs_quests.cpp +++ b/engines/xeen/dialogs/dialogs_quests.cpp @@ -157,7 +157,7 @@ void Quests::execute() { break; case AUTO_NOTES: { - int count = _vm->getGameID() == GType_Swords ? 49 : MAX_DIALOG_LINES; + count = _vm->getGameID() == GType_Swords ? 49 : MAX_DIALOG_LINES; for (int idx = 0; idx < count; ++idx) lines[idx] = ""; |