From 306ace7fd21fe1f2e1dcba50075ef2a259f052ea Mon Sep 17 00:00:00 2001 From: Deve Date: Fri, 11 Dec 2015 18:57:48 +0100 Subject: [PATCH] Keep consistency with log label in irr driver --- src/graphics/irr_driver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/irr_driver.cpp b/src/graphics/irr_driver.cpp index 6b1a73dd9..e72c21310 100644 --- a/src/graphics/irr_driver.cpp +++ b/src/graphics/irr_driver.cpp @@ -547,7 +547,7 @@ void IrrDriver::initDevice() (UserConfigParams::m_shadows_resolution < 512 || UserConfigParams::m_shadows_resolution > 2048)) { - Log::warn("IrrDriver", + Log::warn("irr_driver", "Invalid value for UserConfigParams::m_shadows_resolution : %i", (int)UserConfigParams::m_shadows_resolution); UserConfigParams::m_shadows_resolution = 0; @@ -2098,7 +2098,7 @@ void IrrDriver::doScreenShot() video::IImage* image = m_video_driver->createScreenShot(); if(!image) { - Log::error("IrrDriver", "Could not create screen shot."); + Log::error("irr_driver", "Could not create screen shot."); return; }