Fix MSVC warnings

This commit is contained in:
Clement 2018-10-01 10:49:04 -07:00
parent 585c278400
commit 1997191e77

View file

@ -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();