mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Minor const-correctness for some functions in FifoPlayer and some AudioCommon headers.
This commit is contained in:
parent
101bded6b3
commit
e0aa674c72
4 changed files with 10 additions and 10 deletions
|
@ -39,7 +39,7 @@ public:
|
|||
|
||||
void AddStereoSamples(const short *sample_data, u32 count);
|
||||
void AddStereoSamplesBE(const short *sample_data, u32 count); // big endian
|
||||
u32 GetAudioSize() { return audio_size; }
|
||||
u32 GetAudioSize() const { return audio_size; }
|
||||
};
|
||||
|
||||
#endif // _WAVEFILE_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue