aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.cpp
diff options
context:
space:
mode:
authorMax Horn2003-09-07 19:28:45 +0000
committerMax Horn2003-09-07 19:28:45 +0000
commit1dbab0237f253f2427e8218b3c5a2c97fdfb3f62 (patch)
tree8586e18d708106b7ebdbe50d2ace44633e967274 /scumm/player_v2.cpp
parent361c3b95d52babd23b78864e6679334ed1c9e316 (diff)
downloadscummvm-rg350-1dbab0237f253f2427e8218b3c5a2c97fdfb3f62.tar.gz
scummvm-rg350-1dbab0237f253f2427e8218b3c5a2c97fdfb3f62.tar.bz2
scummvm-rg350-1dbab0237f253f2427e8218b3c5a2c97fdfb3f62.zip
cleanup/refactoring
svn-id: r10070
Diffstat (limited to 'scumm/player_v2.cpp')
-rw-r--r--scumm/player_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/player_v2.cpp b/scumm/player_v2.cpp
index 0538631a87..78631f11c3 100644
--- a/scumm/player_v2.cpp
+++ b/scumm/player_v2.cpp
@@ -364,7 +364,7 @@ Player_V2::Player_V2(Scumm *scumm) {
_RNG = NG_PRESET;
set_pcjr(scumm->_midiDriver != MD_PCSPK);
- set_master_volume(255);
+ setMasterVolume(255);
_mixer->setupPremix(this, premix_proc);
}
@@ -406,7 +406,7 @@ void Player_V2::set_pcjr(bool pcjr) {
mutex_down();
}
-void Player_V2::set_master_volume (int vol) {
+void Player_V2::setMasterVolume (int vol) {
if (vol > 255)
vol = 255;