diff options
author | Vladimir | 2011-06-07 11:47:41 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:31:38 +0200 |
commit | 222d9b23762d24ad3a752c8fbb9d2112cd2faeba (patch) | |
tree | a9931a0641af70da32f6eeeded296657e123de8a /engines | |
parent | a5e76d6911d29c42b810925480fd80478356fd10 (diff) | |
download | scummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.tar.gz scummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.tar.bz2 scummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.zip |
DREAMWEB: fixed stosw instruction
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/runtime.h b/engines/dreamweb/runtime.h index c3b4fc9398..1d3096d48d 100644 --- a/engines/dreamweb/runtime.h +++ b/engines/dreamweb/runtime.h @@ -345,7 +345,7 @@ public: es.byte(di++) = al; } inline void _stosw() { - es.word(di) = al; + es.word(di) = ax; di += 2; } |