summaryrefslogtreecommitdiffhomepage
path: root/examples/others
diff options
context:
space:
mode:
authorRay <[email protected]>2017-10-22 20:43:57 +0200
committerGitHub <[email protected]>2017-10-22 20:43:57 +0200
commit8380c488be90ed0c29a6446b490bfaca6574436e (patch)
tree04e6dac350ecb354600b1019cc98fdbce03198c1 /examples/others
parent18601f761935cd81b0f6298e22885c9bc6b5ee6e (diff)
parent2ba43b595ec1129bd08b89104d5e0fa962d5b2b8 (diff)
downloadraylib-1.8.0.tar.gz
raylib-1.8.0.zip
Merge pull request #371 from raysan5/develop1.8.0
Integrate Develop branch
Diffstat (limited to 'examples/others')
-rw-r--r--examples/others/audio_standalone.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/others/audio_standalone.c b/examples/others/audio_standalone.c
index 6d7fe1f0..0a09c988 100644
--- a/examples/others/audio_standalone.c
+++ b/examples/others/audio_standalone.c
@@ -6,16 +6,17 @@
*
* [audio] module requires some external libs:
* OpenAL Soft - Audio device management lib (http://kcat.strangesoft.net/openal.html)
-* stb_vorbis - Ogg audio files loading (http://www.nothings.org/stb_vorbis/)
-* jar_xm - XM module file loading
-* jar_mod - MOD audio file loading
+* stb_vorbis - Ogg audio files loading (http://www.nothings.org/stb_vorbis/)
+* jar_xm - XM module file loading
+* jar_mod - MOD audio file loading
+* dr_flac - FLAC audio file loading
*
* Compile audio module using:
* gcc -c audio.c stb_vorbis.c -Wall -std=c99 -DAUDIO_STANDALONE -DAL_LIBTYPE_STATIC
*
* Compile example using:
* gcc -o audio_standalone.exe audio_standalone.c audio.o stb_vorbis.o -lopenal32 -lwinmm /
-* -Wall -std=c99 -Wl,-allow-multiple-definition
+* -s -Wall -std=c99 -Wl,-allow-multiple-definition
*
* This example has been created using raylib 1.7 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)