diff --git a/ansi-terminal-game.cabal b/ansi-terminal-game.cabal
--- a/ansi-terminal-game.cabal
+++ b/ansi-terminal-game.cabal
@@ -1,5 +1,5 @@
 name:                ansi-terminal-game
-version:             0.7.0.0
+version:             0.7.1.0
 synopsis:            sdl-like functions for terminal applications, based on
                      ansi-terminal
 description:         Library which aims to replicate standard 2d game
diff --git a/changes.txt b/changes.txt
--- a/changes.txt
+++ b/changes.txt
@@ -1,3 +1,9 @@
+0.7.1.0
+-------
+
+- Fixed 0.7.0.0 (deprecated) interface.
+- Released Fri 22 Nov 2019 14:51:40 CET
+
 0.7.0.0
 -------
 
diff --git a/src/Terminal/Game/Animation.hs b/src/Terminal/Game/Animation.hs
--- a/src/Terminal/Game/Animation.hs
+++ b/src/Terminal/Game/Animation.hs
@@ -25,12 +25,12 @@
 type Animation = T.Timed Plane
 
 -- | Creates an 'Animation'.
-creaAnimation :: Loop -> [(Integer, Plane)] -> Animation
-creaAnimation = creaTimedRes
+creaAnimation :: [(Integer, Plane)] -> Animation
+creaAnimation ips = creaTimedRes (Times 1 Elapse) ips
 
 -- | Creates a looped 'Animation'.
-creaLoopAnimation :: Loop -> [(Integer, Plane)] -> Animation
-creaLoopAnimation = creaTimedRes
+creaLoopAnimation :: [(Integer, Plane)] -> Animation
+creaLoopAnimation ips = creaTimedRes AlwaysLoop ips
 
 -- | Wraps a 'Plane' into an 'Animation'.
 creaStaticAnimation :: Plane -> Animation
