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/framecounter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sword25/gfx/framecounter.cpp') diff --git a/engines/sword25/gfx/framecounter.cpp b/engines/sword25/gfx/framecounter.cpp index 82d4d313a6..15bc7d00ea 100644 --- a/engines/sword25/gfx/framecounter.cpp +++ b/engines/sword25/gfx/framecounter.cpp @@ -37,14 +37,14 @@ namespace Sword25 { -BS_Framecounter::BS_Framecounter(int UpdateFrequency) : +Framecounter::Framecounter(int UpdateFrequency) : m_FPS(0), m_FPSCount(0), m_LastUpdateTime(-1) { SetUpdateFrequency(UpdateFrequency); } -void BS_Framecounter::Update() { +void Framecounter::Update() { // Aktuellen Systemtimerstand auslesen uint64_t Timer = g_system->getMillis() * 1000; -- cgit v1.2.3