1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Tidied-up a few stray sign-conversion warnings.

This commit is contained in:
jules 2015-03-15 18:22:19 +00:00
parent 995839429e
commit 43252dc605
8 changed files with 76 additions and 74 deletions

View file

@ -221,7 +221,7 @@ void QuickTimeMovieComponent::setPosition (const double seconds)
if (movie != 0)
{
QTTime t;
t.timeValue = (uint64) (100000.0 * seconds);
t.timeValue = (long long) (100000.0 * seconds);
t.timeScale = 100000;
t.flags = 0;