aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/maxtrax.h
diff options
context:
space:
mode:
authorNorbert Lange2009-08-07 16:21:30 +0000
committerNorbert Lange2009-08-07 16:21:30 +0000
commitc4047908aa8970c2742544d2186bf0303fe9c9d0 (patch)
tree8e91f07fab60bd2a77664f8558fb6a941dae27c6 /sound/mods/maxtrax.h
parent648bec1d0ccce8738d672b3a7b23933722cd60e6 (diff)
downloadscummvm-rg350-c4047908aa8970c2742544d2186bf0303fe9c9d0.tar.gz
scummvm-rg350-c4047908aa8970c2742544d2186bf0303fe9c9d0.tar.bz2
scummvm-rg350-c4047908aa8970c2742544d2186bf0303fe9c9d0.zip
added stub for setting audio filter in Paula
fixed wrong value for volume in maxtrax svn-id: r43099
Diffstat (limited to 'sound/mods/maxtrax.h')
-rw-r--r--sound/mods/maxtrax.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/mods/maxtrax.h b/sound/mods/maxtrax.h
index 0c0100a934..a0e0d04d34 100644
--- a/sound/mods/maxtrax.h
+++ b/sound/mods/maxtrax.h
@@ -25,7 +25,6 @@
// see if all engines using this class are DISABLED
#if !defined(ENABLE_KYRA)
-#error trying to include the MaxTrax Header with no engine enabled that uses it
// normal Header Guard
#elif !defined SOUND_MODS_MAXTRAX_H
@@ -126,7 +125,7 @@ private:
uint16 modulation;
uint16 modulationTime;
-// int16 microtonal;
+ int16 microtonal;
uint16 portamentoTime;
@@ -136,14 +135,13 @@ private:
uint8 volume;
uint8 voicesActive;
-// uint8 number;
enum {
kFlagRightChannel = 1 << 0,
kFlagPortamento = 1 << 1,
kFlagDamper = 1 << 2,
kFlagMono = 1 << 3,
-// kFlagMicrotonal = 1 << 4,
+ kFlagMicrotonal = 1 << 4,
kFlagModVolume = 1 << 5
};
byte flags;