mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 07:53:53 +00:00
Error handling fix
This commit is contained in:
parent
403ce30a35
commit
700000cbca
1 changed files with 5 additions and 0 deletions
|
@ -411,6 +411,11 @@ void OMW::Engine::setWindowIcon()
|
|||
if (windowIconStream.fail())
|
||||
std::cerr << "Failed to open " << windowIcon << std::endl;
|
||||
osgDB::ReaderWriter* reader = osgDB::Registry::instance()->getReaderWriterForExtension("png");
|
||||
if (!reader)
|
||||
{
|
||||
std::cerr << "Failed to read window icon, no png readerwriter found" << std::endl;
|
||||
return;
|
||||
}
|
||||
osgDB::ReaderWriter::ReadResult result = reader->readImage(windowIconStream);
|
||||
if (!result.success())
|
||||
std::cerr << "Failed to read " << windowIcon << ": " << result.message() << std::endl;
|
||||
|
|
Loading…
Reference in a new issue