1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Video: Fix conversion warning

This commit is contained in:
reuk 2023-08-17 15:00:51 +01:00
parent 6420ab31b6
commit 00049d8b3a
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -797,7 +797,7 @@ private:
static double toSeconds (const CMTime& t) noexcept
{
return t.timescale != 0 ? (t.value / (double) t.timescale) : 0.0;
return t.timescale != 0 ? ((double) t.value / (double) t.timescale) : 0.0;
}
void playerPreparationFinished (const URL& url, Result r)