forked from mirror/openmw-tes3mp
Fix cout/cerr mixup
This commit is contained in:
parent
24ae1d5ace
commit
0ed3e3e489
1 changed files with 2 additions and 2 deletions
|
@ -331,9 +331,9 @@ namespace ESSImport
|
|||
{
|
||||
if (unknownRecords.insert(n.val).second)
|
||||
{
|
||||
std::ios::fmtflags f(std::cout.flags());
|
||||
std::ios::fmtflags f(std::cerr.flags());
|
||||
std::cerr << "unknown record " << n.toString() << " (0x" << std::hex << esm.getFileOffset() << ")" << std::endl;
|
||||
std::cout.flags(f);
|
||||
std::cerr.flags(f);
|
||||
}
|
||||
|
||||
esm.skipRecord();
|
||||
|
|
Loading…
Reference in a new issue