From 7eb6cb470b30a2d329909085a8779bef704d2a23 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Fri, 31 Jul 2020 12:13:10 +0200 Subject: [PATCH] Update raudio_standalone.c --- examples/others/raudio_standalone.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/others/raudio_standalone.c b/examples/others/raudio_standalone.c index 8fed8d93..7ee5687b 100644 --- a/examples/others/raudio_standalone.c +++ b/examples/others/raudio_standalone.c @@ -5,8 +5,9 @@ * NOTE: This example does not require any graphic device, it can run directly on console. * * DEPENDENCIES: -* mini_al.h - Audio device management lib (https://github.com/dr-soft/mini_al) +* miniaudio.h - Audio device management lib (https://github.com/dr-soft/miniaudio) * stb_vorbis.h - Ogg audio files loading (http://www.nothings.org/stb_vorbis/) +* dr_wav.h - WAV audio file loading (https://github.com/mackron/dr_libs) * dr_mp3.h - MP3 audio file loading (https://github.com/mackron/dr_libs) * dr_flac.h - FLAC audio file loading (https://github.com/mackron/dr_libs) * jar_xm.h - XM module file loading @@ -22,7 +23,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-2019 Ramon Santamaria (@raysan5) +* Copyright (c) 2014-2020 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. @@ -104,7 +105,7 @@ int main() Music music = LoadMusicStream("resources/audio/country.mp3"); PlayMusicStream(music); - printf("\nPress s or d to play sounds...\n"); + printf("\nPress s or d to play sounds, ESC to stop...\n"); //-------------------------------------------------------------------------------------- // Main loop