diff options
| author | jussi | 2024-12-10 21:50:10 +0200 |
|---|---|---|
| committer | jussi | 2024-12-10 21:50:10 +0200 |
| commit | cdb719b23998f4ba73cf3c696c7a82e2f4dc5342 (patch) | |
| tree | 5d18ff52578014ee62dd57d6ba27d3ef6ccea711 /src/audio.c | |
| parent | cb2b0e4dff5e1d98054f9e5f809fd3a14cd220a1 (diff) | |
| download | reilua-enhanced-cdb719b23998f4ba73cf3c696c7a82e2f4dc5342.tar.gz reilua-enhanced-cdb719b23998f4ba73cf3c696c7a82e2f4dc5342.tar.bz2 reilua-enhanced-cdb719b23998f4ba73cf3c696c7a82e2f4dc5342.zip | |
EXPOSE_API_SYMBOLS, SetShaderValueWithBuffer and SetShaderValueVWithBuffer.
Diffstat (limited to 'src/audio.c')
| -rw-r--r-- | src/audio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio.c b/src/audio.c index 8ef7e2d..dee3744 100644 --- a/src/audio.c +++ b/src/audio.c @@ -56,7 +56,7 @@ int laudioSetMasterVolume( lua_State* L ) { } /* -> isReady = RL.GetMasterVolume() +> volume = RL.GetMasterVolume() Get master volume (listener) @@ -129,7 +129,7 @@ int laudioLoadWaveFromMemory( lua_State* L ) { } /* -> isReady = RL.IsWaveValid( Wave wave ) +> isValid = RL.IsWaveValid( Wave wave ) Checks if wave data is valid (data loaded and parameters) @@ -174,7 +174,7 @@ int laudioLoadSoundAlias( lua_State* L ) { } /* -> isReady = RL.IsSoundValid( Sound sound ) +> isValid = RL.IsSoundValid( Sound sound ) Checks if a sound is valid (data loaded and buffers initialized) @@ -497,7 +497,7 @@ int laudioLoadMusicStreamFromMemory( lua_State* L ) { } /* -> isReady = RL.IsMusicValid( Music music ) +> isValid = RL.IsMusicValid( Music music ) Checks if a music stream is valid (context and buffers initialized) |
