From: Ingo Ruhnke Date: Mon, 3 Jul 2006 19:00:00 +0000 (+0000) Subject: - fixed missing angle init X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=0281069747a0a8b81b6d51f5e090353334a74c01;p=supertux.git - fixed missing angle init SVN-Revision: 3857 --- diff --git a/src/sprite/sprite.cpp b/src/sprite/sprite.cpp index e14621f80..00c624713 100644 --- a/src/sprite/sprite.cpp +++ b/src/sprite/sprite.cpp @@ -43,6 +43,7 @@ Sprite::Sprite(SpriteData& newdata) Sprite::Sprite(const Sprite& other) : data(other.data), frame(other.frame), animation_loops(other.animation_loops), + angle(0.0f), action(other.action) { last_ticks = real_time;