Changeset 147 for sbliveos2/trunk/drv16/midipars.cpp
- Timestamp:
- Apr 24, 2000, 9:45:21 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/drv16/midipars.cpp
r142 r147 273 273 274 274 if (cmdByte >= 7) { // Timing Compression (Short) [ 7-127 ] 275 lWait = cmdByte * ulPerClock; 275 //SvL: += instead of = (BUGFIX) 276 lWait += cmdByte * ulPerClock; 276 277 } 277 278 278 279 else if (cmdByte == 1) { // Timing compression (Long) [ 1 ] 279 lWait = (((ULONG) (message[2] << 7)) + ((ULONG) message[1])) * ulPerClock; 280 //SvL: += instead of = (BUGFIX) 281 lWait += (((ULONG) (message[2] << 7)) + ((ULONG) message[1])) * ulPerClock; 280 282 } 281 283
Note:
See TracChangeset
for help on using the changeset viewer.