aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v3a.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-09-07 09:39:16 +0000
committerTravis Howell2003-09-07 09:39:16 +0000
commit6a438b86a9d393c9df740ad4281a6c9c3acb5d15 (patch)
treefbca658a05b551601282b9013e8a0af9b323e66c /scumm/player_v3a.cpp
parentfb0e7c3fd2946692ab287231dce06a143450cde3 (diff)
downloadscummvm-rg350-6a438b86a9d393c9df740ad4281a6c9c3acb5d15.tar.gz
scummvm-rg350-6a438b86a9d393c9df740ad4281a6c9c3acb5d15.tar.bz2
scummvm-rg350-6a438b86a9d393c9df740ad4281a6c9c3acb5d15.zip
Fix warning
svn-id: r10065
Diffstat (limited to 'scumm/player_v3a.cpp')
-rw-r--r--scumm/player_v3a.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/scumm/player_v3a.cpp b/scumm/player_v3a.cpp
index 1bf41f2646..5f0625f64f 100644
--- a/scumm/player_v3a.cpp
+++ b/scumm/player_v3a.cpp
@@ -268,8 +268,6 @@ void Player_V3A::playMusic() {
pitch -= 24;
else if (_scumm->_gameId == GID_LOOM) // Loom music still has a lot of problems
pitch -= 21; // but this adjustment seems to get it mostly right
- if (pitch < 0)
- pitch = 0;
int pit = pitch % 12;
int oct = (pitch / 12);
if (oct > 5)