diff options
| author | Ahmad Fatoum <[email protected]> | 2017-11-25 20:27:53 +0100 |
|---|---|---|
| committer | Ahmad Fatoum <[email protected]> | 2017-11-25 21:45:31 +0100 |
| commit | f991a075e18df5e58bd6f6f90c1b02b5b353cbe3 (patch) | |
| tree | 051e2194584b063f9af06d8551b2e96d323b1528 /examples/others | |
| parent | 853cc6f4c96f4de94a11aa8317e98fd0e42c64fd (diff) | |
| download | raylib-f991a075e18df5e58bd6f6f90c1b02b5b353cbe3.tar.gz raylib-f991a075e18df5e58bd6f6f90c1b02b5b353cbe3.zip | |
Build examples and games on Travis CI
They were disabled because they failed to build,
but this patch set fixes the build on Linux and macOS.
This doesn't apply to the AppVeyor build on Windows yet;
it currently fails at linking with OpenAL.
Diffstat (limited to 'examples/others')
| -rw-r--r-- | examples/others/audio_standalone.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/examples/others/audio_standalone.c b/examples/others/audio_standalone.c index 0a09c988..97c3fd0d 100644 --- a/examples/others/audio_standalone.c +++ b/examples/others/audio_standalone.c @@ -26,14 +26,11 @@ ********************************************************************************************/ #include <stdio.h> +#include "audio.h" #if defined(_WIN32) #include <conio.h> // Windows only, no stardard library -#endif - -#include "audio.h" - -#if defined(__linux__) +#else #include <stdio.h> #include <termios.h> #include <unistd.h> |
