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 | |
| parent | 460e425f82afdc7ad6cdefe05c473173b488da56 (diff) | |
minor comment typos
| -rw-r--r-- | sokol_args.h | 2 | ||||
| -rw-r--r-- | sokol_audio.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sokol_args.h b/sokol_args.h index 39397f26..046faa46 100644 --- a/sokol_args.h +++ b/sokol_args.h @@ -134,7 +134,7 @@ WINMAIN AND ARGC / ARGV ======================= On Windows with WinMain() based apps, use the __argc and __argv global - variables provided Windows. These are compatible with main(argc, argv) + variables provided by Windows. These are compatible with main(argc, argv) and have already been converted to UTF-8 by Windows: int WINAPI WinMain(...) { 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) |