mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 16:35:20 +00:00
Fix doxygen message
svn-id: r18000
This commit is contained in:
parent
34f569108c
commit
9bfc9281a1
@ -58,7 +58,7 @@ public:
|
|||||||
bool readLine(char *in, size_t size);
|
bool readLine(char *in, size_t size);
|
||||||
bool readBit8u(Bit8u *in);
|
bool readBit8u(Bit8u *in);
|
||||||
size_t write(const void *out, size_t size);
|
size_t write(const void *out, size_t size);
|
||||||
bool writeBit8u(unsigned char out);
|
bool writeBit8u(Bit8u out);
|
||||||
bool isEOF();
|
bool isEOF();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ class Tables {
|
|||||||
void initMT32ConstantTables(Synth *synth);
|
void initMT32ConstantTables(Synth *synth);
|
||||||
static Bit16s clampWF(Synth *synth, const char *n, float ampVal, double input);
|
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);
|
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 initEnvelopes(float sampleRate);
|
||||||
void initFiltCoeff(float samplerate);
|
void initFiltCoeff(float samplerate);
|
||||||
public:
|
public:
|
||||||
@ -106,8 +106,8 @@ public:
|
|||||||
KeyLookup keyLookups[97];
|
KeyLookup keyLookups[97];
|
||||||
|
|
||||||
Tables();
|
Tables();
|
||||||
bool init(Synth *synth, PCMWaveEntry pcmWaves[128], float sampleRate, float masterTune);
|
bool init(Synth *synth, PCMWaveEntry *pcmWaves, float sampleRate, float masterTune);
|
||||||
File *initNote(Synth *synth, NoteLookup *noteLookup, float note, float rate, float tuning, PCMWaveEntry pcmWaves[128], File *file);
|
File *initNote(Synth *synth, NoteLookup *noteLookup, float note, float rate, float tuning, PCMWaveEntry *pcmWaves, File *file);
|
||||||
void freeNotes();
|
void freeNotes();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user