Commit cb3d73d

Nick committed on
Fix scrolling increment instrument above 15 bug
commit cb3d73d8bac41e62cd68294cec73e46cccf5770d parent 0b69205
1 changed files +1−1
Modifiedtrackergrid.pas +1−1
@@ -1219,7 +1219,7 @@ begin
1219 1219
1220 cpInstrument: 1220 cpInstrument:
1221 if Instrument <> 0 then 1221 if Instrument <> 0 then
1222 Instrument := Max(Instrument+Value, 1); 1222 Instrument := EnsureRange(Instrument+Value, 1, 15);
1223 1223
1224 cpVolume:; 1224 cpVolume:;
1225 1225