From 02cf55863f82d342d28f8e6cf725e798e96d2724 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 16 Oct 2004 02:47:57 +0000 Subject: [PATCH] add DecodeSeconds() overload for movies --- stepmania/src/RageTexture.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/RageTexture.h b/stepmania/src/RageTexture.h index 2122058ff5..d632a32c10 100644 --- a/stepmania/src/RageTexture.h +++ b/stepmania/src/RageTexture.h @@ -19,7 +19,8 @@ public: // movie texture/animated texture stuff virtual void Play() {} virtual void Pause() {} - virtual void SetPosition( float fSeconds ) {} + virtual void SetPosition( float fSeconds ) {} // seek + virtual void DecodeSeconds( float fSeconds ) {} // decode virtual void SetPlaybackRate( float fRate ) {} virtual bool IsAMovie() const { return false; } virtual bool IsPlaying() const { return false; }