summaryrefslogtreecommitdiff
path: root/src/anim/EaseInOutAnim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/anim/EaseInOutAnim.h')
-rw-r--r--src/anim/EaseInOutAnim.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/anim/EaseInOutAnim.h b/src/anim/EaseInOutAnim.h
index 0555c68..d4326da 100644
--- a/src/anim/EaseInOutAnim.h
+++ b/src/anim/EaseInOutAnim.h
@@ -1,6 +1,6 @@
//
// libavg - Media Playback Engine.
-// Copyright (C) 2003-2011 Ulrich von Zadow
+// Copyright (C) 2003-2014 Ulrich von Zadow
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
@@ -40,11 +40,11 @@ public:
virtual ~EaseInOutAnim();
protected:
- virtual double interpolate(double t);
+ virtual float interpolate(float t);
private:
- double m_EaseInDuration;
- double m_EaseOutDuration;
+ float m_EaseInDuration;
+ float m_EaseOutDuration;
};
}