From 35e5845ba7063abde289f5464c220f421b836f53 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 7 Sep 2002 05:34:05 +0000 Subject: [PATCH] Fix missing const that was causing the virtual to not align. (Why doesn't VC warn about this?!) --- stepmania/src/RageMovieTexture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageMovieTexture.h b/stepmania/src/RageMovieTexture.h index e5a0f17271..234ad8f7a8 100644 --- a/stepmania/src/RageMovieTexture.h +++ b/stepmania/src/RageMovieTexture.h @@ -52,7 +52,7 @@ public: virtual void Pause(); virtual void Stop(); virtual void SetPosition( float fSeconds ); - virtual bool IsAMovie() { return true; }; + virtual bool IsAMovie() const { return true; }; void SetLooping(bool looping=true) { m_bLoop = looping; } LPDIRECT3DTEXTURE8 GetBackBuffer() { return m_pd3dTexture[!m_iIndexFrontBuffer]; }