aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2019-01-10 16:32:40 +0100
committerRay <raysan5@gmail.com>2019-01-10 16:32:40 +0100
commit93471b0a7c75fc675f27fc74dfda281eb8310a7a (patch)
treeb626b2cbe7ade9c8d180f25d16969a2f92992d0f /examples
parent64fd131ed584d063e4f1ee63050d19ca8413a32a (diff)
downloadraylib-93471b0a7c75fc675f27fc74dfda281eb8310a7a.tar.gz
raylib-93471b0a7c75fc675f27fc74dfda281eb8310a7a.zip
WARNING: Renamed module: audio -> raudio
Planning to promote raudio module as a simple and easy-to-use front-end for the amazing mini_al library, so the name change. Name comes from raylib-audio but in spanish it also remembers to word "raudo", meaning "very fast", an analogy that fits perfectly to the usefulness and performance of the library! Consequently, raylib version has been bumped to 2.4-dev.
Diffstat (limited to 'examples')
-rw-r--r--examples/others/raudio_standalone.c (renamed from examples/others/audio_standalone.c)8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/others/audio_standalone.c b/examples/others/raudio_standalone.c
index f08fbf82..930bde85 100644
--- a/examples/others/audio_standalone.c
+++ b/examples/others/raudio_standalone.c
@@ -1,6 +1,6 @@
/*******************************************************************************************
*
-* raylib [audio] example - Using audio module as standalone module
+* raylib [audio] example - Using raudio module as standalone module
*
* NOTE: This example does not require any graphic device, it can run directly on console.
*
@@ -13,7 +13,7 @@
*
* COMPILATION:
* gcc -c ..\..\src\external\mini_al.c -Wall -I.
-* gcc -o audio_standalone.exe audio_standalone.c ..\..\src\audio.c ..\..\src\external\stb_vorbis.c mini_al.o /
+* gcc -o audio_standalone.exe audio_standalone.c ..\..\src\raudio.c mini_al.o /
* -I..\..\src -I..\..\src\external -L. -Wall -std=c99 /
* -DAUDIO_STANDALONE -DSUPPORT_FILEFORMAT_WAV -DSUPPORT_FILEFORMAT_OGG
*
@@ -22,7 +22,7 @@
* This example is licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software:
*
-* Copyright (c) 2014-2018 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2019 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
@@ -41,7 +41,7 @@
*
********************************************************************************************/
-#include "audio.h" // Audio library
+#include "raudio.h" // raylib audio library
#include <stdio.h> // Required for: printf()