diff options
| author | Paul Gilbert | 2018-03-17 20:27:42 -0400 |
|---|---|---|
| committer | Paul Gilbert | 2018-03-17 20:27:42 -0400 |
| commit | 22456b345f4b39558cfc07ccd2e06ab6cfb98850 (patch) | |
| tree | bb0e31433f624843f6addd563db48726be68dbaf /engines/xeen/dialogs/dialogs.cpp | |
| parent | 562522e14414db68b77595de84d856c39e6cf00d (diff) | |
| download | scummvm-rg350-22456b345f4b39558cfc07ccd2e06ab6cfb98850.tar.gz scummvm-rg350-22456b345f4b39558cfc07ccd2e06ab6cfb98850.tar.bz2 scummvm-rg350-22456b345f4b39558cfc07ccd2e06ab6cfb98850.zip | |
XEEN: Change bool _isDarkCc to int _ccNum
Originally the flag was whether the party was on the Dark Side,
but as a bool I was having to cast it to an int side/cc number in
more and more places. So now I've converted it to _ccNum, and it
can be used directly as an int
Diffstat (limited to 'engines/xeen/dialogs/dialogs.cpp')
| -rw-r--r-- | engines/xeen/dialogs/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/dialogs/dialogs.cpp b/engines/xeen/dialogs/dialogs.cpp index d7a696b8d5..ba7fe783c3 100644 --- a/engines/xeen/dialogs/dialogs.cpp +++ b/engines/xeen/dialogs/dialogs.cpp @@ -153,7 +153,7 @@ void ButtonContainer::drawButtons(XSurface *surface) { } bool ButtonContainer::doScroll(bool rollUp, bool fadeIn) { - if (_vm->_files->_isDarkCc) { + if (_vm->_files->_ccNum) { return Cutscenes::doScroll(rollUp, fadeIn); } else { saveButtons(); |
