diff options
| author | raysan5 <[email protected]> | 2020-06-03 01:29:24 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-06-03 01:29:24 +0200 |
| commit | 9ce838806b3b6ff611df6a4b50cc0df8c373ed2e (patch) | |
| tree | 3fe9b3b55e9337b0b6ec230d9ce84672f673d9b5 /examples | |
| parent | 6b9e49e9654ce84bf52604968766b7a2415b8ef6 (diff) | |
| download | raylib-9ce838806b3b6ff611df6a4b50cc0df8c373ed2e.tar.gz raylib-9ce838806b3b6ff611df6a4b50cc0df8c373ed2e.zip | |
[examples] Review/change audio resources
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/audio/audio_multichannel_sound.c | 2 | ||||
| -rw-r--r-- | examples/audio/audio_music_stream.c | 2 | ||||
| -rw-r--r-- | examples/audio/audio_sound_loading.c | 2 | ||||
| -rw-r--r-- | examples/audio/resources/chiptun1.mod | bin | 2142 -> 0 bytes | |||
| -rw-r--r-- | examples/audio/resources/country.mp3 | bin | 0 -> 1497964 bytes | |||
| -rw-r--r-- | examples/audio/resources/guitar_noodling.ogg | bin | 506938 -> 0 bytes | |||
| -rw-r--r-- | examples/audio/resources/tanatana.flac | bin | 100733 -> 0 bytes | |||
| -rw-r--r-- | examples/audio/resources/tanatana.ogg | bin | 57328 -> 0 bytes | |||
| -rw-r--r-- | examples/audio/resources/target.flac | bin | 0 -> 56973 bytes | |||
| -rw-r--r-- | examples/audio/resources/target.ogg | bin | 0 -> 13384 bytes | |||
| -rw-r--r-- | examples/others/raudio_standalone.c | 6 | ||||
| -rw-r--r-- | examples/others/resources/audio/country.mp3 | bin | 0 -> 1497964 bytes | |||
| -rw-r--r-- | examples/others/resources/audio/guitar_noodling.ogg | bin | 506938 -> 0 bytes | |||
| -rw-r--r-- | examples/others/resources/audio/tanatana.ogg | bin | 57328 -> 0 bytes | |||
| -rw-r--r-- | examples/others/resources/audio/target.ogg | bin | 0 -> 13384 bytes |
15 files changed, 6 insertions, 6 deletions
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 Binary files differdeleted file mode 100644 index 00d16885..00000000 --- a/examples/audio/resources/chiptun1.mod +++ /dev/null diff --git a/examples/audio/resources/country.mp3 b/examples/audio/resources/country.mp3 Binary files differnew file mode 100644 index 00000000..91066cce --- /dev/null +++ b/examples/audio/resources/country.mp3 diff --git a/examples/audio/resources/guitar_noodling.ogg b/examples/audio/resources/guitar_noodling.ogg Binary files differdeleted file mode 100644 index f5022040..00000000 --- a/examples/audio/resources/guitar_noodling.ogg +++ /dev/null diff --git a/examples/audio/resources/tanatana.flac b/examples/audio/resources/tanatana.flac Binary files differdeleted file mode 100644 index dfe735cd..00000000 --- a/examples/audio/resources/tanatana.flac +++ /dev/null diff --git a/examples/audio/resources/tanatana.ogg b/examples/audio/resources/tanatana.ogg Binary files differdeleted file mode 100644 index 90b1795a..00000000 --- a/examples/audio/resources/tanatana.ogg +++ /dev/null diff --git a/examples/audio/resources/target.flac b/examples/audio/resources/target.flac Binary files differnew file mode 100644 index 00000000..5fad22c8 --- /dev/null +++ b/examples/audio/resources/target.flac diff --git a/examples/audio/resources/target.ogg b/examples/audio/resources/target.ogg Binary files differnew file mode 100644 index 00000000..2b73e1c7 --- /dev/null +++ b/examples/audio/resources/target.ogg 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 Binary files differnew file mode 100644 index 00000000..91066cce --- /dev/null +++ b/examples/others/resources/audio/country.mp3 diff --git a/examples/others/resources/audio/guitar_noodling.ogg b/examples/others/resources/audio/guitar_noodling.ogg Binary files differdeleted file mode 100644 index f5022040..00000000 --- a/examples/others/resources/audio/guitar_noodling.ogg +++ /dev/null diff --git a/examples/others/resources/audio/tanatana.ogg b/examples/others/resources/audio/tanatana.ogg Binary files differdeleted file mode 100644 index 90b1795a..00000000 --- a/examples/others/resources/audio/tanatana.ogg +++ /dev/null diff --git a/examples/others/resources/audio/target.ogg b/examples/others/resources/audio/target.ogg Binary files differnew file mode 100644 index 00000000..2b73e1c7 --- /dev/null +++ b/examples/others/resources/audio/target.ogg |
