diff --git a/src/engine/playback.cpp b/src/engine/playback.cpp index 12a110b5b..220ff7167 100644 --- a/src/engine/playback.cpp +++ b/src/engine/playback.cpp @@ -1361,6 +1361,7 @@ bool DivEngine::nextTick(bool noAccum, bool inhibitLowLat) { } if (note.on) { dispatchCmd(DivCommand(DIV_CMD_INSTRUMENT,note.channel,note.ins,1)); + //dispatchCmd(DivCommand(DIV_CMD_VOLUME,note.channel,(note.volume*(chan[note.channel].volMax>>8))/127)); dispatchCmd(DivCommand(DIV_CMD_NOTE_ON,note.channel,note.note)); keyHit[note.channel]=true; chan[note.channel].noteOnInhibit=true;