Minor const-correctness for some functions in FifoPlayer and some AudioCommon headers.

This commit is contained in:
Lioncash
2013-12-11 08:43:58 -05:00
parent 101bded6b3
commit e0aa674c72
4 changed files with 10 additions and 10 deletions

View File

@ -45,12 +45,12 @@ public:
// Called from main thread
virtual void PushSamples(const short* samples, unsigned int num_samples);
unsigned int GetSampleRate() {return m_sampleRate;}
unsigned int GetSampleRate() const {return m_sampleRate;}
void SetThrottle(bool use) { m_throttle = use;}
// TODO: do we need this
bool IsHLEReady() { return m_HLEready;}
bool IsHLEReady() const { return m_HLEready;}
void SetHLEReady(bool ready) { m_HLEready = ready;}
// ---------------------