mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Cleanup macos launcher download spam
This commit is contained in:
parent
8642f2aaf8
commit
5ae6a323ac
1 changed files with 4 additions and 1 deletions
|
@ -21,7 +21,10 @@
|
|||
|
||||
-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {
|
||||
CGFloat prog = (float)totalBytesWritten/totalBytesExpectedToWrite;
|
||||
NSLog(@"interface downloaded %d%%", (int)(100.0*prog));
|
||||
|
||||
if ((int)(100.0 * prog) != (int)self.progressPercentage) {
|
||||
NSLog(@"interface downloaded %d%%", (int)(100.0*prog));
|
||||
}
|
||||
|
||||
self.progressPercentage = (100.0 * prog);
|
||||
[[Launcher sharedLauncher] updateProgressIndicator];
|
||||
|
|
Loading…
Reference in a new issue