diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-10-21 14:37:45 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-10-21 14:37:45 +0300 |
commit | 490bac7421b5345e5b9035f1430520c751935534 (patch) | |
tree | 727b1e6fb54439de92a3339cdb02a387cb80a47b /include/adlmidi.h | |
parent | 352660262dfd05cc75b5f2099507c9f29953a270 (diff) | |
download | libADLMIDI-490bac7421b5345e5b9035f1430520c751935534.tar.gz libADLMIDI-490bac7421b5345e5b9035f1430520c751935534.tar.bz2 libADLMIDI-490bac7421b5345e5b9035f1430520c751935534.zip |
Fixed MSVC2015 build
Diffstat (limited to 'include/adlmidi.h')
-rw-r--r-- | include/adlmidi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h index c82ef63..145b5dd 100644 --- a/include/adlmidi.h +++ b/include/adlmidi.h @@ -60,9 +60,9 @@ struct ADL_MIDIPlayer double maxdelay; /* For internal usage */ - int stored_samples; /* num of collected samples */ + ssize_t stored_samples; /* num of collected samples */ short backup_samples[1024]; /* Backup sample storage. */ - int backup_samples_size; /* Backup sample storage. */ + ssize_t backup_samples_size; /* Backup sample storage. */ /* For internal usage */ void *adl_midiPlayer; |