diff options
author | Andrei Prykhodko | 2018-06-29 19:57:53 +0300 |
---|---|---|
committer | Andrei Prykhodko | 2018-06-29 20:36:00 +0300 |
commit | 18a531e4e4a92ea8ac643ccacdc5bf26e2abb434 (patch) | |
tree | b5f6c446e00741a9b27fe02b028d7cb06c326de9 | |
parent | 2409404740550ce59aa379b468791f4dc6772c9d (diff) | |
download | scummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.tar.gz scummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.tar.bz2 scummvm-rg350-18a531e4e4a92ea8ac643ccacdc5bf26e2abb434.zip |
PINK: implemented GoToDomain command
-rw-r--r-- | engines/pink/pda_mgr.cpp | 3 |
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; |