summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-09-14 15:55:31 +0200
committerraysan5 <[email protected]>2020-09-14 15:55:31 +0200
commit43b9113c0c776d7b1b7f6205dbf9816ca237e808 (patch)
tree0f5001d139fe33d8d74e6070dbf9b34ecd6c0a4d /src
parentd7853127db242527f7e2c721640daef74d405381 (diff)
downloadraylib-43b9113c0c776d7b1b7f6205dbf9816ca237e808.tar.gz
raylib-43b9113c0c776d7b1b7f6205dbf9816ca237e808.zip
Reverted some previous changes...
Diffstat (limited to 'src')
-rw-r--r--src/raylib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 57f7fe77..4be53fd1 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