diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-07-29 08:16:39 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-07-29 08:21:38 -0700 |
commit | 40e937c63a2a74ef2ff94ba8a056cce0a07832ed (patch) | |
tree | 9c9893bde95c5a6c2b2d73d4fb7e0745290cd63c /examples/alreverb.c | |
parent | d38d2553649555714bfe20f8ca72614974993d47 (diff) |
Cleanup the examples' includes
Diffstat (limited to 'examples/alreverb.c')
-rw-r--r-- | examples/alreverb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/alreverb.c b/examples/alreverb.c index e6c9e606..e1d3c207 100644 --- a/examples/alreverb.c +++ b/examples/alreverb.c @@ -27,11 +27,13 @@ #include <stdio.h> #include <assert.h> -#include <SDL_sound.h> +#include "SDL_sound.h" +#include "SDL_audio.h" +#include "SDL_stdinc.h" #include "AL/al.h" #include "AL/alc.h" -#include "AL/alext.h" +#include "AL/efx.h" #include "AL/efx-presets.h" #include "common/alhelpers.h" |