summaryrefslogtreecommitdiffhomepage
path: root/examples/others/raudio_standalone.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-06-03 01:29:24 +0200
committerraysan5 <[email protected]>2020-06-03 01:29:24 +0200
commit9ce838806b3b6ff611df6a4b50cc0df8c373ed2e (patch)
tree3fe9b3b55e9337b0b6ec230d9ce84672f673d9b5 /examples/others/raudio_standalone.c
parent6b9e49e9654ce84bf52604968766b7a2415b8ef6 (diff)
downloadraylib-9ce838806b3b6ff611df6a4b50cc0df8c373ed2e.tar.gz
raylib-9ce838806b3b6ff611df6a4b50cc0df8c373ed2e.zip
[examples] Review/change audio resources
Diffstat (limited to 'examples/others/raudio_standalone.c')
-rw-r--r--examples/others/raudio_standalone.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/others/raudio_standalone.c b/examples/others/raudio_standalone.c
index 9122c321..8fed8d93 100644
--- a/examples/others/raudio_standalone.c
+++ b/examples/others/raudio_standalone.c
@@ -98,10 +98,10 @@ int main()
InitAudioDevice();
- Sound fxWav = LoadSound("resources/audio/weird.wav"); // Load WAV audio file
- Sound fxOgg = LoadSound("resources/audio/tanatana.ogg"); // Load OGG audio file
+ Sound fxWav = LoadSound("resources/audio/weird.wav"); // Load WAV audio file
+ Sound fxOgg = LoadSound("resources/audio/target.ogg"); // Load OGG audio file
- Music music = LoadMusicStream("resources/audio/guitar_noodling.ogg");
+ Music music = LoadMusicStream("resources/audio/country.mp3");
PlayMusicStream(music);
printf("\nPress s or d to play sounds...\n");