diff options
author | Chris Robinson <[email protected]> | 2017-04-07 03:33:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-07 03:33:03 -0700 |
commit | 710bbde09c45cf32e94e815f43ce48fd80c9d77b (patch) | |
tree | 51a1a16998c7b1b2deb037be7466097b8a0434ac /examples/alloopback.c | |
parent | 70a097bf59741dca44069ef139a22d2b7e0a9a07 (diff) |
Ensure SDL_AUDIO_BITSIZE is defined for older SDL2 versions
Diffstat (limited to 'examples/alloopback.c')
-rw-r--r-- | examples/alloopback.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/alloopback.c b/examples/alloopback.c index 95ac433f..16553f9b 100644 --- a/examples/alloopback.c +++ b/examples/alloopback.c @@ -38,6 +38,13 @@ #include "common/alhelpers.h" +#ifndef SDL_AUDIO_MASK_BITSIZE +#define SDL_AUDIO_MASK_BITSIZE (0xFF) +#endif +#ifndef SDL_AUDIO_BITSIZE +#define SDL_AUDIO_BITSIZE(x) (x & SDL_AUDIO_MASK_BITSIZE) +#endif + #ifndef M_PI #define M_PI (3.14159265358979323846) #endif |