mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 18:02:13 +02:00
Fix MSVC warnings
This commit is contained in:
parent
585c278400
commit
1997191e77
1 changed files with 3 additions and 3 deletions
|
@ -453,9 +453,9 @@ bool AudioMixerSlave::prepareMix(const SharedNodePointer& listener) {
|
|||
});
|
||||
}
|
||||
|
||||
stats.skipped += streams.skipped.size();
|
||||
stats.inactive += streams.inactive.size();
|
||||
stats.active += streams.active.size();
|
||||
stats.skipped += (int)streams.skipped.size();
|
||||
stats.inactive += (int)streams.inactive.size();
|
||||
stats.active += (int)streams.active.size();
|
||||
|
||||
// clear the newly ignored, un-ignored, ignoring, and un-ignoring streams now that we've processed them
|
||||
listenerData->clearStagedIgnoreChanges();
|
||||
|
|
Loading…
Reference in a new issue