diff options
Diffstat (limited to 'Source/Support.cpp')
| -rw-r--r-- | Source/Support.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/Support.cpp b/Source/Support.cpp index 75288df..16c6876 100644 --- a/Source/Support.cpp +++ b/Source/Support.cpp @@ -124,7 +124,10 @@ void Files::EndLoad() } -void alutLoadWAVFile(char *filename, ALenum *format, void **wave, +/* + Our own special magic version that fixes the filename. + */ +void alutLoadWAVFile_CFH(char *filename, ALenum *format, void **wave, unsigned int *size, ALsizei *freq) { char filename1[256]; @@ -140,7 +143,7 @@ void alutLoadWAVFile(char *filename, ALenum *format, void **wave, *freq = freq1; } -void alutUnloadWAV(ALenum format, void *wave, unsigned int size, +void alutUnloadWAV_CFH(ALenum format, void *wave, unsigned int size, ALsizei freq) { free(wave); |
