aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer_intern.h
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-20 20:19:53 +0000
committerAlejandro Marzini2010-06-20 20:19:53 +0000
commite0fe48032d6e27445a9c963e70cf82bf57b5fd5a (patch)
tree401b0d2e6f9477373ae88033ddfd28362f8db647 /sound/mixer_intern.h
parent4a850209d739111b539fc39bcf003abd6e061538 (diff)
downloadscummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.tar.gz
scummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.tar.bz2
scummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.zip
Made _sampleRate constant again in Audio::MixerImpl. (And Committing "common/timer.h" that should have been included in r50095)
svn-id: r50097
Diffstat (limited to 'sound/mixer_intern.h')
-rw-r--r--sound/mixer_intern.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/mixer_intern.h b/sound/mixer_intern.h
index c1b7df941f..014be7abf2 100644
--- a/sound/mixer_intern.h
+++ b/sound/mixer_intern.h
@@ -60,7 +60,7 @@ private:
OSystem *_syst;
Common::Mutex _mutex;
- uint _sampleRate;
+ const uint _sampleRate;
bool _mixerReady;
uint32 _handleSeed;
@@ -127,8 +127,6 @@ public:
* their audio system has been completed.
*/
void setReady(bool ready);
-
- void setSampleRate(uint sampleRate);
};