From: Daniel Karbach Date: Mon, 20 Aug 2012 21:42:16 +0000 (+0200) Subject: fixed timer type in AnimationRunner::Clear() X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=d1866db2995946437ad57991f519325d62799c55;hp=9cfff98ffce0529c685fbd5aa52e213c295449a1;p=l2e.git fixed timer type in AnimationRunner::Clear() --- 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());