From 485ff15d23b3ae9545f5c9df794f1326185eae7a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 18 Aug 2010 10:52:24 +0000 Subject: SWORD25: Mass-eliminating of BS_ prefix in fmv/ and gfx/ svn-id: r53258 --- engines/sword25/gfx/animationtemplateregistry.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'engines/sword25/gfx/animationtemplateregistry.cpp') diff --git a/engines/sword25/gfx/animationtemplateregistry.cpp b/engines/sword25/gfx/animationtemplateregistry.cpp index be55381500..d15a1947e8 100644 --- a/engines/sword25/gfx/animationtemplateregistry.cpp +++ b/engines/sword25/gfx/animationtemplateregistry.cpp @@ -53,23 +53,23 @@ namespace Sword25 { // Implementation // ----------------------------------------------------------------------------- -std::auto_ptr BS_AnimationTemplateRegistry::m_InstancePtr; +std::auto_ptr AnimationTemplateRegistry::m_InstancePtr; // ----------------------------------------------------------------------------- -void BS_AnimationTemplateRegistry::LogErrorLn(const char *Message) const { +void AnimationTemplateRegistry::LogErrorLn(const char *Message) const { BS_LOG_ERRORLN(Message); } // ----------------------------------------------------------------------------- -void BS_AnimationTemplateRegistry::LogWarningLn(const char *Message) const { +void AnimationTemplateRegistry::LogWarningLn(const char *Message) const { BS_LOG_WARNINGLN(Message); } // ----------------------------------------------------------------------------- -bool BS_AnimationTemplateRegistry::Persist(BS_OutputPersistenceBlock &Writer) { +bool AnimationTemplateRegistry::Persist(BS_OutputPersistenceBlock &Writer) { bool Result = true; // Das nächste zu vergebene Handle schreiben. @@ -95,7 +95,7 @@ bool BS_AnimationTemplateRegistry::Persist(BS_OutputPersistenceBlock &Writer) { // ----------------------------------------------------------------------------- -bool BS_AnimationTemplateRegistry::Unpersist(BS_InputPersistenceBlock &Reader) { +bool AnimationTemplateRegistry::Unpersist(BS_InputPersistenceBlock &Reader) { bool Result = true; // Das nächste zu vergebene Handle wieder herstellen. @@ -116,7 +116,7 @@ bool BS_AnimationTemplateRegistry::Unpersist(BS_InputPersistenceBlock &Reader) { Reader.Read(Handle); // BS_AnimationTemplate wieder herstellen. - Result &= (BS_AnimationTemplate::Create(Reader, Handle) != 0); + Result &= (AnimationTemplate::Create(Reader, Handle) != 0); } return Reader.IsGood() && Result; -- cgit v1.2.3