aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/runtime.h
diff options
context:
space:
mode:
authorVladimir2011-06-07 11:47:41 +0400
committerAlyssa Milburn2011-06-15 17:31:38 +0200
commit222d9b23762d24ad3a752c8fbb9d2112cd2faeba (patch)
treea9931a0641af70da32f6eeeded296657e123de8a /engines/dreamweb/runtime.h
parenta5e76d6911d29c42b810925480fd80478356fd10 (diff)
downloadscummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.tar.gz
scummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.tar.bz2
scummvm-rg350-222d9b23762d24ad3a752c8fbb9d2112cd2faeba.zip
DREAMWEB: fixed stosw instruction
Diffstat (limited to 'engines/dreamweb/runtime.h')
-rw-r--r--engines/dreamweb/runtime.h2
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;
}