diff options
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/adlib.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/midi/adlib.cpp b/backends/midi/adlib.cpp index 59b50aa2ef..c1559d0765 100644 --- a/backends/midi/adlib.cpp +++ b/backends/midi/adlib.cpp @@ -1355,6 +1355,10 @@ AdlibVoice *MidiDriver_ADLIB::allocate_voice(byte pri) { } } + /* V3 games don't have note priorities, first comes wins. */ + if (_game_SmallHeader) + return NULL; + if (best) mc_off(best); return best; |