We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e8886f + 8701b58 commit a8d72f8Copy full SHA for a8d72f8
Assets/PatchKit Patcher/Scripts/PatcherError.cs
@@ -22,7 +22,7 @@ public static PatcherError NoPermissions() {
22
public static PatcherError NotEnoughDiskSpace(long additionalBytesRequired) {
23
return new PatcherError(
24
"Not enough disk space to install this application. Additional {0:0.00} GB of disk space is required.",
25
- additionalBytesRequired / (1024 * 1024 * 1024)
+ additionalBytesRequired / (1024 * 1024 * 1024.0)
26
);
27
}
28
0 commit comments