PINK: Fix warning

This commit is contained in:
Eugene Sandulenko 2020-07-30 00:50:09 +02:00
parent 6c8686676f
commit 21be7be0d2

View File

@ -100,7 +100,7 @@ Common::Error PinkEngine::init() {
if (!_bro->open(broName))
return Common::kNoGameDataFoundError;
if (_orb.getTimestamp() != _bro->getTimestamp()) {
warning("ORB and BRO timestamp mismatch. %lx != %lx", _orb.getTimestamp(), _bro->getTimestamp());
warning("ORB and BRO timestamp mismatch. %x != %x", _orb.getTimestamp(), _bro->getTimestamp());
return Common::kNoGameDataFoundError;
}
}