summaryrefslogtreecommitdiff
path: root/src/sound/sound.cpp
diff options
context:
space:
mode:
authorAlexander Baldeck <alexander@archlinux.org>2004-09-29 07:53:23 +0000
committerAlexander Baldeck <alexander@archlinux.org>2004-09-29 07:53:23 +0000
commit1c8949bc6890c5ab126e7f5914b852485e7ff02f (patch)
tree6d17ff516f52846e006f489420931053b9db69e4 /src/sound/sound.cpp
parent55bb2e71ca2497e0f63b1917d4a5eb512f04a867 (diff)
downloadmana-client-1c8949bc6890c5ab126e7f5914b852485e7ff02f.tar.gz
mana-client-1c8949bc6890c5ab126e7f5914b852485e7ff02f.tar.bz2
mana-client-1c8949bc6890c5ab126e7f5914b852485e7ff02f.tar.xz
mana-client-1c8949bc6890c5ab126e7f5914b852485e7ff02f.zip
*** empty log message ***
Diffstat (limited to 'src/sound/sound.cpp')
-rw-r--r--src/sound/sound.cpp28
1 files changed, 15 insertions, 13 deletions
diff --git a/src/sound/sound.cpp b/src/sound/sound.cpp
index 3df95e65..078d0f91 100644
--- a/src/sound/sound.cpp
+++ b/src/sound/sound.cpp
@@ -174,15 +174,15 @@ void TmwSound::StartMIDI(char *in, int loop) {
and S3M (in UMX extension)
*/
void TmwSound::StartMOD(char * in, int loop) {
- if(isOk==-1)
- return;
-
- mod = load_mod(in);
- if(!mod) {
- isOk=-1;
- throw("Error reading MOD file...");
- }
- play_mod(mod, TRUE);
+ if(isOk==-1)
+ return;
+
+ mod = load_mod(in);
+ if(!mod) {
+ isOk=-1;
+ throw("Error reading MOD file...");
+ }
+ play_mod(mod, TRUE);
}
/**
@@ -291,9 +291,11 @@ void TmwSound::Close(void) {
isOk = -1;
}
-/** PRIVATE */
-
+/**
+ checks if value equals min-/maximum volume and returns
+ true if that's the case.
+*/
bool TmwSound::isMaxVol(int vol) {
- if( vol > 0 && vol < 255 ) return false;
- else return true;
+ if( vol > 0 && vol < 255 ) return false;
+ else return true;
}