aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-06-29 17:57:01 +0300
committerAndrei Prykhodko2018-06-29 20:36:00 +0300
commit2409404740550ce59aa379b468791f4dc6772c9d (patch)
tree84fe7519a7243328e0d9a2342eb5f4707a82dc2f /engines
parent3ed47e34a9e8ecf71f984b8c68656f97258b7ea2 (diff)
downloadscummvm-rg350-2409404740550ce59aa379b468791f4dc6772c9d.tar.gz
scummvm-rg350-2409404740550ce59aa379b468791f4dc6772c9d.tar.bz2
scummvm-rg350-2409404740550ce59aa379b468791f4dc6772c9d.zip
PINK: added warning about GoToHelp command
Diffstat (limited to 'engines')
-rw-r--r--engines/pink/pda_mgr.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/pink/pda_mgr.cpp b/engines/pink/pda_mgr.cpp
index 60b51a4934..5b6bc2cbba 100644
--- a/engines/pink/pda_mgr.cpp
+++ b/engines/pink/pda_mgr.cpp
@@ -56,6 +56,9 @@ void PDAMgr::execute(const Command &command) {
goToPage(_previousPages.pop());
break;
}
+ case Command::kGoToHelp:
+ warning("Command GoToHelp is not supported and won't be");
+ break;
case Command::kClose:
close();
break;