mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 06:43:41 +02:00
convert size_t to int
This commit is contained in:
parent
32040a9047
commit
c14a928db5
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ int AudioMixerClientData::checkBuffersBeforeFrameSend() {
|
|||
}
|
||||
}
|
||||
|
||||
return _audioStreams.size();
|
||||
return (int)_audioStreams.size();
|
||||
}
|
||||
|
||||
bool AudioMixerClientData::shouldSendStats(int frameNumber) {
|
||||
|
|
Loading…
Reference in a new issue