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:
parent
5268ef8ac2
commit
3160aa3068
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue