diff options
author | Filippos Karapetis | 2008-04-29 14:04:52 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-04-29 14:04:52 +0000 |
commit | 4893633ff5f621d2285f423b0018d2344ea45455 (patch) | |
tree | cce462a241f1d60cd4743151df1be928f028f5db /engines/kyra | |
parent | e588f9274eb2e29f86babb409f108498b0b0199e (diff) | |
download | scummvm-rg350-4893633ff5f621d2285f423b0018d2344ea45455.tar.gz scummvm-rg350-4893633ff5f621d2285f423b0018d2344ea45455.tar.bz2 scummvm-rg350-4893633ff5f621d2285f423b0018d2344ea45455.zip |
Fixed MSVC warning
svn-id: r31768
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/text_v3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/text_v3.cpp b/engines/kyra/text_v3.cpp index 0468c4729a..69568d718f 100644 --- a/engines/kyra/text_v3.cpp +++ b/engines/kyra/text_v3.cpp @@ -559,7 +559,7 @@ void KyraEngine_v3::loadDlgHeader(int &vocHighBase, int &vocHighIndex, int &inde void KyraEngine_v3::setDlgIndex(uint16 index) { debugC(9, kDebugLevelMain, "KyraEngine_v3::setDlgIndex(%d)", index); if (_mainCharacter.dlgIndex != index) { - Common::set_to(_newSceneDlgState, _newSceneDlgState+ARRAYSIZE(_newSceneDlgState), false); + Common::set_to(_newSceneDlgState, _newSceneDlgState+ARRAYSIZE(_newSceneDlgState), 0); memset(_conversationState, -1, sizeof(_conversationState)); _chatAltFlag = false; _mainCharacter.dlgIndex = index; |