diff options
| author | Filippos Karapetis | 2012-07-08 16:10:40 +0300 |
|---|---|---|
| committer | Filippos Karapetis | 2012-07-08 16:15:47 +0300 |
| commit | 10b3fdf2478dce3712de6213678f54335d5c46a0 (patch) | |
| tree | 3492146a9dd0affd7ed58689f832106df0d4551a /engines/sci/engine | |
| parent | 2ef3f5e6957ce072f9bb5df0fe3f65da578b836c (diff) | |
| download | scummvm-rg350-10b3fdf2478dce3712de6213678f54335d5c46a0.tar.gz scummvm-rg350-10b3fdf2478dce3712de6213678f54335d5c46a0.tar.bz2 scummvm-rg350-10b3fdf2478dce3712de6213678f54335d5c46a0.zip | |
SCI: Show information for correct file naming in the QFG4 import room
This information is shown in previous QFG versions, but it had to be
placed in a SCI32 graphics function in order to be shown in QFG4 too
Diffstat (limited to 'engines/sci/engine')
| -rw-r--r-- | engines/sci/engine/kgraphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index 5b483eb4a2..6d938b6d22 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -951,7 +951,8 @@ reg_t kDrawControl(EngineState *s, int argc, reg_t *argv) { } if (objName == "savedHeros") { // Import of QfG character files dialog is shown. - // display additional popup information before letting user use it. + // Display additional popup information before letting user use it. + // For the SCI32 version of this, check kernelAddPlane(). reg_t changeDirButton = s->_segMan->findObjectByName("changeDirItem"); if (!changeDirButton.isNull()) { // check if checkDirButton is still enabled, in that case we are called the first time during that room |
