aboutsummaryrefslogtreecommitdiff
path: root/include/adlmidi.h
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2017-10-21 14:37:45 +0300
committerWohlstand <admin@wohlnet.ru>2017-10-21 14:37:45 +0300
commit490bac7421b5345e5b9035f1430520c751935534 (patch)
tree727b1e6fb54439de92a3339cdb02a387cb80a47b /include/adlmidi.h
parent352660262dfd05cc75b5f2099507c9f29953a270 (diff)
downloadlibADLMIDI-490bac7421b5345e5b9035f1430520c751935534.tar.gz
libADLMIDI-490bac7421b5345e5b9035f1430520c751935534.tar.bz2
libADLMIDI-490bac7421b5345e5b9035f1430520c751935534.zip
Fixed MSVC2015 build
Diffstat (limited to 'include/adlmidi.h')
-rw-r--r--include/adlmidi.h4
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;