diff options
-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; |