summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2019-07-24 22:38:40 +0200
committerRay <[email protected]>2019-07-24 22:38:40 +0200
commit9909c8301291b4afca928b2e8037a06fb307b3c3 (patch)
tree69e1d58c84896cc2e79feb5b666704beb14b0761 /src/raylib.h
parent73a3d4a183ecc7223bfe3ea21b3edb498fcaeb72 (diff)
downloadraylib-9909c8301291b4afca928b2e8037a06fb307b3c3.tar.gz
raylib-9909c8301291b4afca928b2e8037a06fb307b3c3.zip
REMOVED: LoadWaveEx()
Completely useless and actually buggy!
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 9a730743..90c6e07d 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1351,7 +1351,6 @@ RLAPI void SetMasterVolume(float volume); // Set mas
// Wave/Sound loading/unloading functions
RLAPI Wave LoadWave(const char *fileName); // Load wave data from file
-RLAPI Wave LoadWaveEx(void *data, int sampleCount, int sampleRate, int sampleSize, int channels); // Load wave data from raw array data
RLAPI Sound LoadSound(const char *fileName); // Load sound from file
RLAPI Sound LoadSoundFromWave(Wave wave); // Load sound from wave data
RLAPI void UpdateSound(Sound sound, const void *data, int samplesCount);// Update sound buffer with new data