3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-30 05:03:01 +02:00

Change 0LL to INT64_C(0)

This commit is contained in:
Ryan Huffman 2016-01-26 09:36:52 -08:00
parent 5268ef8ac2
commit 3160aa3068

View file

@ -313,7 +313,7 @@ int64_t AudioInjector::injectNextFrame() {
}
int64_t playNextFrameAt = _nextFrame * AudioConstants::NETWORK_FRAME_USECS;
return std::max(0LL, playNextFrameAt - currentTime);
return std::max(INT64_C(0), playNextFrameAt - currentTime);
}
void AudioInjector::stop() {