Skip to content

Commit a8d72f8

Browse files
authored
Merge pull request #126 from patchkit-net/dev/v3.14.x
v3.14.0.0 hotfix
2 parents 7e8886f + 8701b58 commit a8d72f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/PatchKit Patcher/Scripts/PatcherError.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static PatcherError NoPermissions() {
2222
public static PatcherError NotEnoughDiskSpace(long additionalBytesRequired) {
2323
return new PatcherError(
2424
"Not enough disk space to install this application. Additional {0:0.00} GB of disk space is required.",
25-
additionalBytesRequired / (1024 * 1024 * 1024)
25+
additionalBytesRequired / (1024 * 1024 * 1024.0)
2626
);
2727
}
2828

0 commit comments

Comments
 (0)