aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/player_sid.cpp
diff options
context:
space:
mode:
authorMax Horn2010-03-10 21:03:50 +0000
committerMax Horn2010-03-10 21:03:50 +0000
commit43abd0e0192d290d3cf256bbc7cf16869031b98b (patch)
tree86a1ee482408c74066eaf510526054e5f9d53ae9 /engines/scumm/player_sid.cpp
parentc97ee14a65afc0b8a11ef5c10105e966f67a5934 (diff)
downloadscummvm-rg350-43abd0e0192d290d3cf256bbc7cf16869031b98b.tar.gz
scummvm-rg350-43abd0e0192d290d3cf256bbc7cf16869031b98b.tar.bz2
scummvm-rg350-43abd0e0192d290d3cf256bbc7cf16869031b98b.zip
cleanup
svn-id: r48230
Diffstat (limited to 'engines/scumm/player_sid.cpp')
-rw-r--r--engines/scumm/player_sid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/player_sid.cpp b/engines/scumm/player_sid.cpp
index a17343b4a4..eed38cd219 100644
--- a/engines/scumm/player_sid.cpp
+++ b/engines/scumm/player_sid.cpp
@@ -1249,7 +1249,7 @@ Player_SID::Player_SID(ScummEngine *scumm, Audio::Mixer *mixer) {
_music_timer = 0;
_mixer = mixer;
- _sample_rate = _mixer->getOutputRate();
+ _sampleRate = _mixer->getOutputRate();
_vm = scumm;
// sound speed is slightly different on NTSC and PAL machines
@@ -1314,7 +1314,7 @@ void Player_SID::initSID() {
_sid = new Resid::SID();
_sid->set_sampling_parameters(
timingProps[_videoSystem].clockFreq,
- _sample_rate);
+ _sampleRate);
_sid->enable_filter(true);
_sid->reset();