diff options
author | Travis Howell | 2004-09-11 14:14:07 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-11 14:14:07 +0000 |
commit | 867809fb1db68da6e669805a87e85166d04b7c82 (patch) | |
tree | 97461e18648f46c738c57ae2582ff0f68cd29026 /scumm | |
parent | 26a83df8534ba0aa909b13fbaf0d237065bb902f (diff) | |
download | scummvm-rg350-867809fb1db68da6e669805a87e85166d04b7c82.tar.gz scummvm-rg350-867809fb1db68da6e669805a87e85166d04b7c82.tar.bz2 scummvm-rg350-867809fb1db68da6e669805a87e85166d04b7c82.zip |
Add stub case for now.
svn-id: r15012
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v72he.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index d7c01d8837..0884797527 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1930,7 +1930,7 @@ void ScummEngine_v72he::o72_unknownFA() { void ScummEngine_v72he::decodeParseString(int m, int n) { byte b; - int i, color; + int i, id, color; int args[31]; byte name[1024]; @@ -2001,6 +2001,10 @@ void ScummEngine_v72he::decodeParseString(int m, int n) { break; } break; + case 0xE1: + id = pop(); + // Load and display talkie resource. + break; case 0xF9: color = pop(); if (color == 1) { |