mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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