aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/runtime.h
diff options
context:
space:
mode:
authorVladimir2011-06-08 00:49:32 +0400
committerAlyssa Milburn2011-06-15 17:31:55 +0200
commit326d5025ccdf0af4cf580583066bc0708a0c4e74 (patch)
tree608ab0ab01ea8e8a8505b7d1843003f6d1f7feb3 /engines/dreamweb/runtime.h
parent27210a70b49567e1307fcf9f43558ef615daa3ac (diff)
downloadscummvm-rg350-326d5025ccdf0af4cf580583066bc0708a0c4e74.tar.gz
scummvm-rg350-326d5025ccdf0af4cf580583066bc0708a0c4e74.tar.bz2
scummvm-rg350-326d5025ccdf0af4cf580583066bc0708a0c4e74.zip
DREAMWEB: removed const method
Diffstat (limited to 'engines/dreamweb/runtime.h')
-rw-r--r--engines/dreamweb/runtime.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/dreamweb/runtime.h b/engines/dreamweb/runtime.h
index b6771dd1d8..8e2eeb1db8 100644
--- a/engines/dreamweb/runtime.h
+++ b/engines/dreamweb/runtime.h
@@ -120,11 +120,6 @@ public:
return _segment->byte(index);
}
- inline uint16 word(unsigned index) const {
- assert(_segment != 0);
- return _segment->word(index);
- }
-
inline operator uint16() const {
return _value;
}