From 43b9113c0c776d7b1b7f6205dbf9816ca237e808 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Mon, 14 Sep 2020 15:55:31 +0200 Subject: [PATCH] Reverted some previous changes... --- src/raylib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raylib.h b/src/raylib.h index 57f7fe77a..4be53fd19 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -423,8 +423,8 @@ typedef struct AudioStream { rAudioBuffer *buffer; // Pointer to internal data used by the audio system unsigned int sampleRate; // Frequency (samples per second) - unsigned short sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported) - unsigned short channels; // Number of channels (1-mono, 2-stereo) + unsigned int sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported) + unsigned int channels; // Number of channels (1-mono, 2-stereo) } AudioStream; // Sound source type