From 13fa6a7d140579ef843ffe4d7d18abad8b68b3b5 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 3 Dec 2007 06:36:12 +0000 Subject: [PATCH] This is overridden by subclasses so it needs to be virtual. --- stepmania/src/RageTexture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageTexture.h b/stepmania/src/RageTexture.h index 3cadf82d60..c2bfd3fd02 100644 --- a/stepmania/src/RageTexture.h +++ b/stepmania/src/RageTexture.h @@ -22,7 +22,7 @@ public: virtual void DecodeSeconds( float fSeconds ) {} // decode virtual void SetPlaybackRate( float fRate ) {} virtual bool IsAMovie() const { return false; } - void SetLooping(bool looping) { } + virtual void SetLooping(bool looping) { } int GetSourceWidth() const {return m_iSourceWidth;} int GetSourceHeight() const {return m_iSourceHeight;}