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

Revert "Fix problem with milliseconds overflowing for long uptime on OSX"

This reverts commit 99afd933e0.
This commit is contained in:
cesare 2019-02-19 10:13:32 +00:00
parent 9cebba485a
commit f0c1c4c6f5

View file

@ -383,7 +383,7 @@ bool MessageManager::runDispatchLoopUntil (int millisecondsToRunFor)
jassert (millisecondsToRunFor >= 0);
jassert (isThisTheMessageThread()); // must only be called by the message thread
auto endTime = (int64) Time::currentTimeMillis() + millisecondsToRunFor;
auto endTime = Time::currentTimeMillis() + millisecondsToRunFor;
while (quitMessagePosted.get() == 0)
{