mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user