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
This commit is contained in:
Paul Gilbert
2016-07-15 19:25:58 -04:00
parent a82bcd3ce7
commit 5ccc0a66da
790 changed files with 803 additions and 803 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
namespace Titanic {
void CFanDecrease::save(SimpleFile *file, int indent) const {
void CFanDecrease::save(SimpleFile *file, int indent) {
file->writeNumberLine(1, indent);
CGameObject::save(file, indent);
}