TSAGE: BF - Remove unused variable

This commit is contained in:
Strangerke 2015-01-26 22:51:41 +01:00
parent 21a6618919
commit b336e9b12c
2 changed files with 3 additions and 2 deletions

View File

@ -964,9 +964,10 @@ Scene810::Scene810(): SceneExt() {
}
void Scene810::synchronize(Serializer &s) {
int dummy = 0;
SceneExt::synchronize(s);
s.syncAsSint16LE(_fieldA70);
s.syncAsSint16LE(_fieldA72);
s.syncAsSint16LE(dummy);
s.syncAsSint16LE(_fieldA74);
}

View File

@ -229,7 +229,7 @@ public:
Exit _exit;
ASoundExt _sound1;
Rect _rect1, _rect2, _rect3;
int _fieldA70, _fieldA72, _fieldA74;
int _fieldA70, _fieldA74;
Scene810();
virtual void synchronize(Serializer &s);