From 9bbed7d6fcd09f1e92d30b98e3a06a18f4976b50 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 30 Nov 2006 04:02:53 +0000 Subject: [PATCH] pure virtual --- stepmania/src/RageSoundReader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundReader.h b/stepmania/src/RageSoundReader.h index 5b9775cdd9..55448afd79 100644 --- a/stepmania/src/RageSoundReader.h +++ b/stepmania/src/RageSoundReader.h @@ -23,8 +23,8 @@ public: * that will be read via Read(). GetStreamToSourceRatio() returns the ratio * for extrapolating the source frames of the remainder of the block. These * values are valid so long as no parameters are changed before the next Read(). */ - virtual int GetNextSourceFrame() const { return 0; } // XXX: should be pure - virtual float GetStreamToSourceRatio() const { return 1.0f; } // XXX: should be pure + virtual int GetNextSourceFrame() const = 0; + virtual float GetStreamToSourceRatio() const = 0; RString GetError() const { return m_sError; }