diff options
author | Filippos Karapetis | 2014-10-14 01:32:03 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-10-14 01:32:03 +0300 |
commit | 2e87ace09d9898d092ad9f99a12dc075d16deacb (patch) | |
tree | 5798acc5d905244fa23597dd6e1d8e79610d1fe0 | |
parent | 9ca021a0d27acf1b9277509b7c0429634a3f0bc2 (diff) | |
download | scummvm-rg350-2e87ace09d9898d092ad9f99a12dc075d16deacb.tar.gz scummvm-rg350-2e87ace09d9898d092ad9f99a12dc075d16deacb.tar.bz2 scummvm-rg350-2e87ace09d9898d092ad9f99a12dc075d16deacb.zip |
MADS: Handle the unimplemented 'D' animation command
-rw-r--r-- | engines/mads/nebular/menu_nebular.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mads/nebular/menu_nebular.cpp b/engines/mads/nebular/menu_nebular.cpp index 1cee544e34..3919e70a09 100644 --- a/engines/mads/nebular/menu_nebular.cpp +++ b/engines/mads/nebular/menu_nebular.cpp @@ -1036,6 +1036,9 @@ void AnimationView::processCommand() { case 'X': // Exit after animation finishes. Ignore break; + case 'D': + // Unimplemented and ignored in the original. Ignore as well + break; case 'Y': // Reset palette on startup _resetPalette = true; |