aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2013-08-11 19:13:21 +0200
committerStrangerke2013-08-11 19:13:21 +0200
commit43b729cae8c2f98cb38b94a5f9caf3bd80d8afab (patch)
treec1a07ffe03857c13a00fda43e2fc8429a2eb0b1b
parent54f391a6899cc46c651ba0d077ae5ea47fc32dd5 (diff)
downloadscummvm-rg350-43b729cae8c2f98cb38b94a5f9caf3bd80d8afab.tar.gz
scummvm-rg350-43b729cae8c2f98cb38b94a5f9caf3bd80d8afab.tar.bz2
scummvm-rg350-43b729cae8c2f98cb38b94a5f9caf3bd80d8afab.zip
MORTEVIELLE: Remove useless code
-rw-r--r--engines/mortevielle/sound.cpp14
-rw-r--r--engines/mortevielle/sound.h1
2 files changed, 2 insertions, 13 deletions
diff --git a/engines/mortevielle/sound.cpp b/engines/mortevielle/sound.cpp
index 3fd47de714..45f91aba5c 100644
--- a/engines/mortevielle/sound.cpp
+++ b/engines/mortevielle/sound.cpp
@@ -274,11 +274,12 @@ void SoundManager::setParent(MortevielleEngine *vm) {
void SoundManager::spfrac(int wor) {
_queue[2]._rep = (uint)wor >> 12;
- if ((_soundType == 0) && (_queue[2]._code != 9))
+ if ((_soundType == 0) && (_queue[2]._code != 9)) {
if (((_queue[2]._code > 4) && (_queue[2]._val != 20) && (_queue[2]._rep != 3) && (_queue[2]._rep != 6) && (_queue[2]._rep != 9)) ||
((_queue[2]._code < 5) && ((_queue[2]._val != 19) && (_queue[2]._val != 22) && (_queue[2]._rep != 4) && (_queue[2]._rep != 9)))) {
++_queue[2]._rep;
}
+ }
_queue[2]._freq = ((uint)wor >> 6) & 7;
_queue[2]._acc = ((uint)wor >> 9) & 7;
@@ -331,10 +332,6 @@ void SoundManager::entroct(byte o) {
++_ptr_oct;
}
-void SoundManager::veracf(byte b) {
- ;
-}
-
void SoundManager::cctable(tablint &t) {
float tb[257];
@@ -378,7 +375,6 @@ void SoundManager::trait_car() {
else
d3 = kNullValue;
if (_queue[0]._code >= 5) {
- veracf(_queue[1]._acc);
if (_queue[0]._code == 9) {
entroct(4);
if (d3 == kNullValue)
@@ -486,7 +482,6 @@ void SoundManager::trait_car() {
case 3:
d3 = _queue[1]._code + 5; // 7 ou 8 => Corresponding vowel
if (_queue[0]._code > 4) {
- veracf(_queue[1]._acc);
if (_queue[0]._code == 9) {
entroct(4);
entroct(d3);
@@ -503,7 +498,6 @@ void SoundManager::trait_car() {
entroct(3);
} while (i > 0);
}
- veracf(_queue[2]._acc);
if (_queue[2]._code == 6) {
entroct(4);
entroct(_tabdph[(_queue[2]._val - 14) << 1]);
@@ -519,7 +513,6 @@ void SoundManager::trait_car() {
break;
case 0:
case 1:
- veracf(_queue[1]._acc);
switch (_queue[2]._code) {
case 2:
d2 = 7;
@@ -578,7 +571,6 @@ void SoundManager::trait_car() {
entroct(_queue[1]._val);
entroct(5);
} else if ((_queue[2]._code != 0) && (_queue[2]._code != 1) && (_queue[2]._code != 4)) {
- veracf(_queue[2]._acc);
switch (_queue[2]._code) {
case 3:
d2 = 8;
@@ -609,7 +601,6 @@ void SoundManager::trait_car() {
break;
case 4:
- veracf(_queue[1]._acc);
i = _queue[1]._rep;
if (i != 0) {
do {
@@ -627,7 +618,6 @@ void SoundManager::trait_car() {
entroct(_queue[1]._val);
entroct(5);
} else if ((_queue[2]._code != 0) && (_queue[2]._code != 1) && (_queue[2]._code != 4)) {
- veracf(_queue[2]._acc);
switch (_queue[2]._code) {
case 3:
d2 = 8;
diff --git a/engines/mortevielle/sound.h b/engines/mortevielle/sound.h
index e52de32d04..1e4a4cd54c 100644
--- a/engines/mortevielle/sound.h
+++ b/engines/mortevielle/sound.h
@@ -77,7 +77,6 @@ private:
void spfrac(int wor);
void charg_car(int &currWordNumb);
void entroct(byte o);
- void veracf(byte b);
void cctable(tablint &t);
void trait_car();