From d1866db2995946437ad57991f519325d62799c55 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Mon, 20 Aug 2012 23:42:16 +0200 Subject: [PATCH] fixed timer type in AnimationRunner::Clear() --- src/graphics/Animation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Animation.h b/src/graphics/Animation.h index ecf71e8..97230f5 100644 --- a/src/graphics/Animation.h +++ b/src/graphics/Animation.h @@ -58,7 +58,7 @@ public: public: bool Valid() const { return animation; } - void Clear() { animation = 0; timer = app::Timer(); } + void Clear() { animation = 0; timer = app::Timer(); } void Start(app::State &ctrl) { timer = ctrl.GraphicsTimers().StartInterval(animation->FrameTime()); -- 2.39.2