mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 04:28:37 +00:00
Fix for MSVC warning about ambiguous usage of MIN
svn-id: r34299
This commit is contained in:
parent
4019bb3e37
commit
2d36c08d9f
@ -149,7 +149,7 @@ public:
|
||||
bool isStreamDecoderReady() const { return getStreamDecoderState() == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC ; }
|
||||
|
||||
protected:
|
||||
uint getChannels() const { return MIN(_streaminfo.channels, MAX_OUTPUT_CHANNELS); }
|
||||
uint getChannels() const { return MIN<uint>(_streaminfo.channels, MAX_OUTPUT_CHANNELS); }
|
||||
|
||||
bool allocateBuffer(uint minSamples);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user