Ignore:
Timestamp:
Apr 24, 2000, 9:45:21 PM (25 years ago)
Author:
sandervl
Message:

Fixed wave volume, recording gain + wave recording

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sbliveos2/trunk/drv16/midipars.cpp

    r142 r147  
    273273
    274274      if (cmdByte >= 7) {              // Timing Compression (Short) [ 7-127 ]
    275          lWait = cmdByte * ulPerClock;
     275         //SvL: += instead of = (BUGFIX)
     276         lWait += cmdByte * ulPerClock;
    276277      }
    277278
    278279      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;
    280282      }
    281283
Note: See TracChangeset for help on using the changeset viewer.