diff options
| author | NimbusFox <[email protected]> | 2022-05-13 17:10:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-13 17:10:42 +0100 |
| commit | d8f0da54241d487446d42e4a9998a9c889f7ff36 (patch) | |
| tree | b21eaad7502119a713ca5ae7b56d1bda02fbb12f | |
| parent | d99ca8373399cfcfb348d86b58dada464b7fe741 (diff) | |
| download | raylib.com-d8f0da54241d487446d42e4a9998a9c889f7ff36.tar.gz raylib.com-d8f0da54241d487446d42e4a9998a9c889f7ff36.zip | |
Correcting function name
| -rw-r--r-- | cheatsheet/raylib_audio.c | 2 |
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) |
