From 8542b7d19068fb139e83d654616f16430e6c3408 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 29 Nov 2006 21:52:31 +0000 Subject: [PATCH] GetNextStreamFrame -> GetNextSourceFrame --- stepmania/src/RageSoundReader_Chain.cpp | 2 +- stepmania/src/RageSoundReader_Chain.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundReader_Chain.cpp b/stepmania/src/RageSoundReader_Chain.cpp index 35384a2859..b7c3633f4c 100644 --- a/stepmania/src/RageSoundReader_Chain.cpp +++ b/stepmania/src/RageSoundReader_Chain.cpp @@ -224,7 +224,7 @@ bool RageSoundReader_Chain::IsStreamingFromDisk() const return false; } -int RageSoundReader_Chain::GetNextStreamFrame() const +int RageSoundReader_Chain::GetNextSourceFrame() const { return m_iCurrentFrame; /* int iPosition = m_apActiveSounds[0].pSound->GetPosition(); diff --git a/stepmania/src/RageSoundReader_Chain.h b/stepmania/src/RageSoundReader_Chain.h index 78d42d6828..3d869ca326 100644 --- a/stepmania/src/RageSoundReader_Chain.h +++ b/stepmania/src/RageSoundReader_Chain.h @@ -36,7 +36,7 @@ public: int GetSampleRate() const { return m_iActualSampleRate; } unsigned GetNumChannels() const { return m_iChannels; } bool IsStreamingFromDisk() const; - int GetNextStreamFrame() const; + int GetNextSourceFrame() const; float GetStreamToSourceRatio() const; private: