Browse Source

Fix result of operation is garbage or undefined

pull/504/head
maficccc@gmail.com 7 years ago
parent
commit
8cb324b2da
1 changed files with 9 additions and 9 deletions
  1. +9
    -9
      examples/others/audio_standalone.c

+ 9
- 9
examples/others/audio_standalone.c View File

@ -76,13 +76,13 @@ int main()
{
// Initialization
//--------------------------------------------------------------------------------------
unsigned char key;
">static unsigned char key;
InitAudioDevice();
Sound fxWav = LoadSound("resources/audio/weird.wav"); // Load WAV audio file
Sound fxOgg = LoadSound("resources/audio/tanatana.ogg"); // Load OGG audio file
Music music = LoadMusicStream("resources/audio/guitar_noodling.ogg");
PlayMusicStream(music);
@ -99,23 +99,23 @@ int main()
PlaySound(fxWav);
key = 0;
}
if (key == 'd')
{
PlaySound(fxOgg);
key = 0;
}
UpdateMusicStream(music);
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadSound(fxWav); // Unload sound data
UnloadSound(fxOgg); // Unload sound data
UnloadMusicStream(music); // Unload music stream data
CloseAudioDevice();
//--------------------------------------------------------------------------------------

Loading…
Cancel
Save