From 9bfc9281a1dfedaa6b7a7c4889c94b49b45f6944 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 9 May 2005 12:26:07 +0000 Subject: [PATCH] Fix doxygen message svn-id: r18000 --- sound/softsynth/mt32/mt32_file.h | 2 +- sound/softsynth/mt32/tables.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/softsynth/mt32/mt32_file.h b/sound/softsynth/mt32/mt32_file.h index 7ebb6449b61..c0fd050e186 100644 --- a/sound/softsynth/mt32/mt32_file.h +++ b/sound/softsynth/mt32/mt32_file.h @@ -58,7 +58,7 @@ public: bool readLine(char *in, size_t size); bool readBit8u(Bit8u *in); size_t write(const void *out, size_t size); - bool writeBit8u(unsigned char out); + bool writeBit8u(Bit8u out); bool isEOF(); }; diff --git a/sound/softsynth/mt32/tables.h b/sound/softsynth/mt32/tables.h index 28587165875..d9af5114b24 100644 --- a/sound/softsynth/mt32/tables.h +++ b/sound/softsynth/mt32/tables.h @@ -74,7 +74,7 @@ class Tables { void initMT32ConstantTables(Synth *synth); static Bit16s clampWF(Synth *synth, const char *n, float ampVal, double input); static File *initWave(Synth *synth, NoteLookup *noteLookup, float ampsize, float div2, File *file); - bool initNotes(Synth *synth, PCMWaveEntry pcmWaves[128], float rate, float tuning); + bool initNotes(Synth *synth, PCMWaveEntry *pcmWaves, float rate, float tuning); void initEnvelopes(float sampleRate); void initFiltCoeff(float samplerate); public: @@ -106,8 +106,8 @@ public: KeyLookup keyLookups[97]; Tables(); - bool init(Synth *synth, PCMWaveEntry pcmWaves[128], float sampleRate, float masterTune); - File *initNote(Synth *synth, NoteLookup *noteLookup, float note, float rate, float tuning, PCMWaveEntry pcmWaves[128], File *file); + bool init(Synth *synth, PCMWaveEntry *pcmWaves, float sampleRate, float masterTune); + File *initNote(Synth *synth, NoteLookup *noteLookup, float note, float rate, float tuning, PCMWaveEntry *pcmWaves, File *file); void freeNotes(); };