summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNimbusFox <[email protected]>2022-05-13 17:10:42 +0100
committerGitHub <[email protected]>2022-05-13 17:10:42 +0100
commitd8f0da54241d487446d42e4a9998a9c889f7ff36 (patch)
treeb21eaad7502119a713ca5ae7b56d1bda02fbb12f
parentd99ca8373399cfcfb348d86b58dada464b7fe741 (diff)
downloadraylib.com-d8f0da54241d487446d42e4a9998a9c889f7ff36.tar.gz
raylib.com-d8f0da54241d487446d42e4a9998a9c889f7ff36.zip
Correcting function name
-rw-r--r--cheatsheet/raylib_audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cheatsheet/raylib_audio.c b/cheatsheet/raylib_audio.c
index 83e3e65..3ced14c 100644
--- a/cheatsheet/raylib_audio.c
+++ b/cheatsheet/raylib_audio.c
@@ -1,6 +1,6 @@
// Audio device management functions
- void LoadAudioStream(void); // Initialize audio device and context
+ void LoadAudioDevice(void); // Initialize audio device and context
void CloseAudioDevice(void); // Close the audio device and context
bool IsAudioDeviceReady(void); // Check if audio device has been initialized successfully
void SetMasterVolume(float volume); // Set master volume (listener)