diff options
author | Willem Jan Palenstijn | 2011-06-16 16:29:48 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-06-16 16:29:48 +0200 |
commit | 2c76a4af40fdafecd5191c55b3d54b204022c13b (patch) | |
tree | 98ed51c2cd7c56e346a9da3c08d3ee0eef49e18d /engines/dreamweb | |
parent | 287c23f1263c77fa04d2a697f441d362ed419b5d (diff) | |
download | scummvm-rg350-2c76a4af40fdafecd5191c55b3d54b204022c13b.tar.gz scummvm-rg350-2c76a4af40fdafecd5191c55b3d54b204022c13b.tar.bz2 scummvm-rg350-2c76a4af40fdafecd5191c55b3d54b204022c13b.zip |
DREAMWEB: Fix probably copy-paste error in asm
This removes an (empty) 'unbounded code' block in dreamgen.cpp
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 000b6d7e43..1d079d9571 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -632,16 +632,12 @@ void edeninbath(Context &context) { STACK_CHECK(context); context._cmp(context.data.byte(kGeneraldead), 0); if (context.flags.z()) - goto notinbed; + return /* (notinbath) */; context._cmp(context.data.byte(kSartaindead), 0); if (!context.flags.z()) return /* (notinbath) */; showgamereel(context); addtopeoplelist(context); -/*continuing to unbounded code: notinbed from eden:5-6*/ -notinbed: - return; - return; } void malefan(Context &context) { |