HOPKINS: Some more renaming

This commit is contained in:
Strangerke 2012-12-16 02:11:36 +01:00
parent 3c31d91d97
commit 38437c4efe
8 changed files with 128 additions and 144 deletions

View file

@ -263,10 +263,10 @@ void SaveLoadManager::syncSavegameData(Common::Serializer &s) {
}
void SaveLoadManager::syncCharacterLocation(Common::Serializer &s, CharacterLocation &item) {
s.syncAsSint16LE(item.xp);
s.syncAsSint16LE(item.yp);
s.syncAsSint16LE(item._pos.x);
s.syncAsSint16LE(item._pos.y);
s.syncAsSint16LE(item.field2);
s.syncAsSint16LE(item.location);
s.syncAsSint16LE(item._location);
s.syncAsSint16LE(item.field4);
}