aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-06-29 19:57:53 +0300
committerAndrei Prykhodko2018-06-29 20:36:00 +0300
commit18a531e4e4a92ea8ac643ccacdc5bf26e2abb434 (patch)
treeb5f6c446e00741a9b27fe02b028d7cb06c326de9 /engines
parent2409404740550ce59aa379b468791f4dc6772c9d (diff)
downloadscummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.tar.gz
scummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.tar.bz2
scummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.zip
PINK: implemented GoToDomain 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 5b6bc2cbba..69e6d10ccd 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::kGoToDomain:
+ goToPage(Common::String::format("%.6s", _page->getName().c_str()));
+ break;
case Command::kGoToHelp:
warning("Command GoToHelp is not supported and won't be");
break;