Make _WM_AdjustNoteVolume's pan_ofs a signed int

This commit is contained in:
Randy Heit 2016-01-12 06:34:29 -06:00
parent db527c02f3
commit dc66f4cb3f

View file

@ -1417,7 +1417,7 @@ get_sample_data(struct _patch *sample_patch, unsigned long int freq) {
void _WM_AdjustNoteVolumes(struct _mdi *mdi, unsigned char ch, struct _note *nte) { void _WM_AdjustNoteVolumes(struct _mdi *mdi, unsigned char ch, struct _note *nte) {
double premix_dBm; double premix_dBm;
double premix_lin; double premix_lin;
unsigned char pan_ofs; int pan_ofs;
double premix_dBm_left; double premix_dBm_left;
double premix_dBm_right; double premix_dBm_right;
double premix_left; double premix_left;