mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Fix unknown record error message
This commit is contained in:
parent
fc6aa256bf
commit
714b19015c
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ void MWState::StateManager::loadGame (const Character *character, const std::str
|
|||
default:
|
||||
|
||||
// ignore invalid records
|
||||
std::cerr << "Ignoring unknown record: " << n.name << std::endl;
|
||||
std::cerr << "Ignoring unknown record: " << n.toString() << std::endl;
|
||||
reader.skipRecord();
|
||||
}
|
||||
int progressPercent = static_cast<int>(float(reader.getFileOffset())/total*100);
|
||||
|
|
Loading…
Reference in a new issue