aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/gfx/chev_right_on.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-06-29 19:53:16 -0400
committerPaul Gilbert2016-07-15 19:25:58 -0400
commit5ccc0a66da38d23520234e7060efaf966d3345b9 (patch)
tree9cff2311be2b8e9cd1f62e76ae74e15f3d4c18fc /engines/titanic/gfx/chev_right_on.cpp
parenta82bcd3ce7ef0ae604af45fdb56668fca47e7137 (diff)
downloadscummvm-rg350-5ccc0a66da38d23520234e7060efaf966d3345b9.tar.gz
scummvm-rg350-5ccc0a66da38d23520234e7060efaf966d3345b9.tar.bz2
scummvm-rg350-5ccc0a66da38d23520234e7060efaf966d3345b9.zip
TITANIC: Removed const modifier from all saveable objects
Turns out that CGameObject::save regenerates the _movieRangeInfo list. So the const suffix can no longer be used for the entire hierarchy
Diffstat (limited to 'engines/titanic/gfx/chev_right_on.cpp')
-rw-r--r--engines/titanic/gfx/chev_right_on.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/gfx/chev_right_on.cpp b/engines/titanic/gfx/chev_right_on.cpp
index ac55100ed6..29a07f0d41 100644
--- a/engines/titanic/gfx/chev_right_on.cpp
+++ b/engines/titanic/gfx/chev_right_on.cpp
@@ -29,7 +29,7 @@ EMPTY_MESSAGE_MAP(CChevRightOn, CToggleSwitch)
CChevRightOn::CChevRightOn() : CToggleSwitch() {
}
-void CChevRightOn::save(SimpleFile *file, int indent) const {
+void CChevRightOn::save(SimpleFile *file, int indent) {
file->writeNumberLine(1, indent);
CToggleSwitch::save(file, indent);
}