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:
parent
9cebba485a
commit
f0c1c4c6f5
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue