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:
parent
6420ab31b6
commit
00049d8b3a
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue