diff options
author | Vladimir Menshakov | 2011-06-15 10:23:18 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:35:04 +0200 |
commit | ae8edebd65deafc1376a9c3a51331929815b6c64 (patch) | |
tree | b48ae63d4f19611b37ae456811a4812cf5c1750c | |
parent | c760405a4ee846275c1c191867ff57cb4e8dd8d3 (diff) | |
download | scummvm-rg350-ae8edebd65deafc1376a9c3a51331929815b6c64.tar.gz scummvm-rg350-ae8edebd65deafc1376a9c3a51331929815b6c64.tar.bz2 scummvm-rg350-ae8edebd65deafc1376a9c3a51331929815b6c64.zip |
DREAMWEB: fixed title skipping
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index bcca8ae2aa..331c8abbd7 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -5802,6 +5802,7 @@ void biblequote(Context & context) { if (context.flags.z()) goto biblequotearly; cancelch0(context); biblequotearly: + context.data.byte(kLasthardkey) = 0; {assert(stack_depth == context.stack.size()); return; } } @@ -5859,6 +5860,7 @@ void intro(Context & context) { getridoftemptext(context); clearbeforeload(context); introearly: + context.data.byte(kLasthardkey) = 0; {assert(stack_depth == context.stack.size()); return; } } @@ -6059,6 +6061,7 @@ void realcredits(Context & context) { context.cx = 256; hangone(context); realcreditsearly: + context.data.byte(kLasthardkey) = 0; {assert(stack_depth == context.stack.size()); return; } } |