1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-09 04:30:09 +00:00

Fixed beforeDate in standalone BLOCKS SDK MacOS example

This commit is contained in:
tpoole 2016-11-02 11:08:34 +00:00
parent 980ece4a8a
commit 73764c2871

View file

@ -11,7 +11,7 @@ int main (int argc, const char * argv[])
BlockFinder finder;
// Run an event loop.
while ([[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:2]]);
while ([[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]);
return 0;
}