Skip to content

Commit

Permalink
Fix loadSoundAlias #20.
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Sep 6, 2024
1 parent d79531d commit f4dec39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/raylib5.c3l/raylib.c3i
Original file line number Diff line number Diff line change
Expand Up @@ -1701,7 +1701,7 @@ fn Sound loadSound(ZString fileName) @extern("LoadSound");
// Load sound from wave data
fn Sound loadSoundFromWave(Wave wave) @extern("LoadSoundFromWave");
// Create a new sound that shares the same sample data as the source sound, does not own the sound data
fn Sound loadSoundAlias(Sound source) @extern("LoadSoundFromWave");
fn Sound loadSoundAlias(Sound source) @extern("loadSoundAlias");
// Checks if a sound is ready
fn bool isSoundReady(Sound sound) @extern("IsSoundReady");
// Update sound buffer with new data
Expand Down

0 comments on commit f4dec39

Please sign in to comment.