diff --git a/examples/audio/audio_multichannel_sound.c b/examples/audio/audio_multichannel_sound.c index d5002664..17975c49 100644 --- a/examples/audio/audio_multichannel_sound.c +++ b/examples/audio/audio_multichannel_sound.c @@ -25,7 +25,7 @@ int main(void) InitAudioDevice(); // Initialize audio device Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file - Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file + Sound fxOgg = LoadSound("resources/target.ogg"); // Load OGG audio file SetSoundVolume(fxWav, 0.2); diff --git a/examples/audio/audio_music_stream.c b/examples/audio/audio_music_stream.c index bc069dcc..22db3dd8 100644 --- a/examples/audio/audio_music_stream.c +++ b/examples/audio/audio_music_stream.c @@ -22,7 +22,7 @@ int main(void) InitAudioDevice(); // Initialize audio device - Music music = LoadMusicStream("resources/guitar_noodling.ogg"); + Music music = LoadMusicStream("resources/country.mp3"); PlayMusicStream(music); diff --git a/examples/audio/audio_sound_loading.c b/examples/audio/audio_sound_loading.c index 5b0fc0d4..2ccf23fe 100644 --- a/examples/audio/audio_sound_loading.c +++ b/examples/audio/audio_sound_loading.c @@ -23,7 +23,7 @@ int main(void) InitAudioDevice(); // Initialize audio device Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file - Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file + Sound fxOgg = LoadSound("resources/target.ogg"); // Load OGG audio file SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- diff --git a/examples/audio/resources/chiptun1.mod b/examples/audio/resources/chiptun1.mod deleted file mode 100644 index 00d16885..00000000 Binary files a/examples/audio/resources/chiptun1.mod and /dev/null differ diff --git a/examples/audio/resources/country.mp3 b/examples/audio/resources/country.mp3 new file mode 100644 index 00000000..91066cce Binary files /dev/null and b/examples/audio/resources/country.mp3 differ diff --git a/examples/audio/resources/guitar_noodling.ogg b/examples/audio/resources/guitar_noodling.ogg deleted file mode 100644 index f5022040..00000000 Binary files a/examples/audio/resources/guitar_noodling.ogg and /dev/null differ diff --git a/examples/audio/resources/tanatana.flac b/examples/audio/resources/tanatana.flac deleted file mode 100644 index dfe735cd..00000000 Binary files a/examples/audio/resources/tanatana.flac and /dev/null differ diff --git a/examples/audio/resources/tanatana.ogg b/examples/audio/resources/tanatana.ogg deleted file mode 100644 index 90b1795a..00000000 Binary files a/examples/audio/resources/tanatana.ogg and /dev/null differ diff --git a/examples/audio/resources/target.flac b/examples/audio/resources/target.flac new file mode 100644 index 00000000..5fad22c8 Binary files /dev/null and b/examples/audio/resources/target.flac differ diff --git a/examples/audio/resources/target.ogg b/examples/audio/resources/target.ogg new file mode 100644 index 00000000..2b73e1c7 Binary files /dev/null and b/examples/audio/resources/target.ogg differ 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"); diff --git a/examples/others/resources/audio/country.mp3 b/examples/others/resources/audio/country.mp3 new file mode 100644 index 00000000..91066cce Binary files /dev/null and b/examples/others/resources/audio/country.mp3 differ diff --git a/examples/others/resources/audio/guitar_noodling.ogg b/examples/others/resources/audio/guitar_noodling.ogg deleted file mode 100644 index f5022040..00000000 Binary files a/examples/others/resources/audio/guitar_noodling.ogg and /dev/null differ diff --git a/examples/others/resources/audio/tanatana.ogg b/examples/others/resources/audio/tanatana.ogg deleted file mode 100644 index 90b1795a..00000000 Binary files a/examples/others/resources/audio/tanatana.ogg and /dev/null differ diff --git a/examples/others/resources/audio/target.ogg b/examples/others/resources/audio/target.ogg new file mode 100644 index 00000000..2b73e1c7 Binary files /dev/null and b/examples/others/resources/audio/target.ogg differ