diff options
author | Vladimir | 2011-06-07 02:34:27 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:31:13 +0200 |
commit | e94a8299aa2aa6dec189232f2db8a340e588c228 (patch) | |
tree | a344a4851974971f55059e4b8cbe1641752ce1d7 /engines | |
parent | 9d53cefa53349c5717e3f585445664b56361c4de (diff) | |
download | scummvm-rg350-e94a8299aa2aa6dec189232f2db8a340e588c228.tar.gz scummvm-rg350-e94a8299aa2aa6dec189232f2db8a340e588c228.tar.bz2 scummvm-rg350-e94a8299aa2aa6dec189232f2db8a340e588c228.zip |
DREAMWEB: fixed invalid operator=
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/dreamweb/runtime.h b/engines/dreamweb/runtime.h index bcc7c383a7..c46ac64e87 100644 --- a/engines/dreamweb/runtime.h +++ b/engines/dreamweb/runtime.h @@ -120,6 +120,7 @@ public: inline void reset(uint16 value); inline SegmentRef& operator=(const uint16 id) { + reset(id); return *this; } |