diff options
-rw-r--r-- | engines/zvision/render_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/render_manager.cpp b/engines/zvision/render_manager.cpp index 8c3d37a160..b2c9e29b94 100644 --- a/engines/zvision/render_manager.cpp +++ b/engines/zvision/render_manager.cpp @@ -64,7 +64,7 @@ void RenderManager::renderImageToScreen(const Common::String &fileName, uint32 x Common::File file; if (!file.open(fileName)) { - error("Could not open file %s", fileName.c_str()); + warning("Could not open file %s", fileName.c_str()); return; } @@ -94,7 +94,7 @@ void RenderManager::renderImageToScreen(const Common::String &fileName, uint32 x // Decode Graphics::TGADecoder tga; if (!tga.loadStream(file)) - error("Error while reading TGA image"); + warning("Error while reading TGA image"); file.close(); const Graphics::Surface *tgaSurface = tga.getSurface(); |