aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/maxtrax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/mods/maxtrax.cpp')
-rw-r--r--sound/mods/maxtrax.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/mods/maxtrax.cpp b/sound/mods/maxtrax.cpp
index 517d185fb1..d0f1de1885 100644
--- a/sound/mods/maxtrax.cpp
+++ b/sound/mods/maxtrax.cpp
@@ -849,8 +849,10 @@ int MaxTrax::playNote(byte note, byte patch, uint16 duration, uint16 volume, boo
channel.isAltered = false;
channel.patch = &_patch[patch];
const int8 voiceIndex = noteOn(channel, note, (byte)volume, kPriorityNote);
- if (voiceIndex >= 0)
+ if (voiceIndex >= 0) {
_voiceCtx[voiceIndex].stopEventTime = duration << 8;
+ Paula::startPaula();
+ }
return voiceIndex;
}