diff options
| author | Andre Weissflog <floooh@gmail.com> | 2018-11-07 12:05:35 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2018-11-07 12:05:35 +0100 |
| commit | 487822d82ca79dba7b67718d962e1ba6beef01b2 (patch) | |
| tree | 1b78e28d0fc1138a2a1bf2f23765686cdafdf01f /sokol_audio.h | |
| parent | 460e425f82afdc7ad6cdefe05c473173b488da56 (diff) | |
minor comment typos
Diffstat (limited to 'sokol_audio.h')
| -rw-r--r-- | sokol_audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_audio.h b/sokol_audio.h index 040b2f0a..2d5aaf0b 100644 --- a/sokol_audio.h +++ b/sokol_audio.h @@ -421,7 +421,7 @@ SOKOL_API_DECL int saudio_push(const float* frames, int num_frames); #define _saudio_def(val, def) (((val) == 0) ? (def) : (val)) #define _saudio_def_flt(val, def) (((val) == 0.0f) ? (def) : (val)) -/*--- implementation-private structures --------------------------------------*/ +/*--- implementation-private constants ---------------------------------------*/ #define _SAUDIO_DEFAULT_SAMPLE_RATE (44100) #define _SAUDIO_DEFAULT_BUFFER_FRAMES (2048) #define _SAUDIO_DEFAULT_PACKET_FRAMES (128) |