diff options
author | Willem Jan Palenstijn | 2011-12-06 19:02:23 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-06 19:31:14 +0100 |
commit | 7a3360e09fbf529b17d194358c393e30ce86593f (patch) | |
tree | f0b8d1cd09324e8e1c57ee8f756684d163086d0c /engines/dreamweb/stubs.cpp | |
parent | 16c9620dbad66d7c1f2bc5f4d172393c34b92371 (diff) | |
download | scummvm-rg350-7a3360e09fbf529b17d194358c393e30ce86593f.tar.gz scummvm-rg350-7a3360e09fbf529b17d194358c393e30ce86593f.tar.bz2 scummvm-rg350-7a3360e09fbf529b17d194358c393e30ce86593f.zip |
DREAMWEB: Fix regressions in 'intro1text', 'redrawmainscrn', 'sitdowninbar'
Diffstat (limited to 'engines/dreamweb/stubs.cpp')
-rw-r--r-- | engines/dreamweb/stubs.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index 5a769e05b5..a06e2fcae0 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -3558,10 +3558,9 @@ void DreamGenContext::redrawMainScrn() { } void DreamGenContext::selectSlot2() { - if (data.word(kMousebutton) == 0) - selectSlot(); - else + if (data.word(kMousebutton)) data.byte(kLoadingorsave) = 2; + selectSlot(); } void DreamGenContext::blank() { |