From 00a0f8d15df8f241741e4a9a68a71641715ae062 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 23 Jan 2011 14:49:50 +0000 Subject: SWORD25: Removed the custom log class and replaced it with warning/error/debugC calls svn-id: r55462 --- engines/sword25/gfx/animationtemplateregistry.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'engines/sword25/gfx/animationtemplateregistry.cpp') diff --git a/engines/sword25/gfx/animationtemplateregistry.cpp b/engines/sword25/gfx/animationtemplateregistry.cpp index 2245090f8f..d942ac2ff7 100644 --- a/engines/sword25/gfx/animationtemplateregistry.cpp +++ b/engines/sword25/gfx/animationtemplateregistry.cpp @@ -32,8 +32,6 @@ * */ -#define BS_LOG_PREFIX "ANIMATIONTEMPLATEREGISTRY" - #include "sword25/kernel/outputpersistenceblock.h" #include "sword25/kernel/inputpersistenceblock.h" #include "sword25/gfx/animationtemplateregistry.h" @@ -44,11 +42,11 @@ DECLARE_SINGLETON(Sword25::AnimationTemplateRegistry); namespace Sword25 { void AnimationTemplateRegistry::logErrorLn(const char *message) const { - BS_LOG_ERRORLN(message); + error(message); } void AnimationTemplateRegistry::logWarningLn(const char *message) const { - BS_LOG_WARNINGLN(message); + warning(message); } bool AnimationTemplateRegistry::persist(OutputPersistenceBlock &writer) { -- cgit v1.2.3