diff options
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/game.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/kmenu.cpp | 1 | ||||
-rw-r--r-- | engines/sci/gui/gui.cpp | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/engine/game.cpp b/engines/sci/engine/game.cpp index 87b9b7bde2..54f1e3c185 100644 --- a/engines/sci/engine/game.cpp +++ b/engines/sci/engine/game.cpp @@ -42,7 +42,7 @@ struct OldNewIdTableEntry { Common::String oldId; Common::String newId; bool demo; - Common::String demoCheckFile; // if non-zero and it doesn't exist, the demo flag is set + Common::String demoCheckFile; // if not empty and it doesn't exist, the demo flag is set }; static const OldNewIdTableEntry s_oldNewTable[] = { diff --git a/engines/sci/engine/kmenu.cpp b/engines/sci/engine/kmenu.cpp index 74496db800..b8c652b607 100644 --- a/engines/sci/engine/kmenu.cpp +++ b/engines/sci/engine/kmenu.cpp @@ -44,6 +44,7 @@ reg_t kAddMenu(EngineState *s, int argc, reg_t *argv) { contents, s->titlebar_port->_font, argv[1]); #else // TODO + warning("TODO: kAddMenu()"); #endif return s->r_acc; diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index fd5df6c365..b6e116be2f 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -296,10 +296,12 @@ void SciGui::drawStatus(const char *text, int16 colorPen, int16 colorBack) { void SciGui::drawMenuBar() { // TODO: Implement menubar + warning("TODO: drawMenuBar()"); } void SciGui::clearMenuBar() { // TODO: Implement menubar + warning("TODO: clearMenuBar()"); } void SciGui::drawPicture(GuiResourceId pictureId, int16 animationNr, bool animationBlackoutFlag, bool mirroredFlag, bool addToFlag, int16 EGApaletteNo) { |