1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 09:45:32 +00:00

Fix unknown record error message

This commit is contained in:
scrawl 2015-01-15 20:31:08 +01:00
parent fc6aa256bf
commit 714b19015c

View file

@ -426,7 +426,7 @@ void MWState::StateManager::loadGame (const Character *character, const std::str
default: default:
// ignore invalid records // ignore invalid records
std::cerr << "Ignoring unknown record: " << n.name << std::endl; std::cerr << "Ignoring unknown record: " << n.toString() << std::endl;
reader.skipRecord(); reader.skipRecord();
} }
int progressPercent = static_cast<int>(float(reader.getFileOffset())/total*100); int progressPercent = static_cast<int>(float(reader.getFileOffset())/total*100);