From e8697068fb5baa454ad97ae272726f98d2108f94 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 1 Apr 2022 15:00:05 +0200 Subject: [PATCH] fix: codestyle --- launcher/minecraft/World.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launcher/minecraft/World.cpp b/launcher/minecraft/World.cpp index e45f042d..9cf67ed9 100644 --- a/launcher/minecraft/World.cpp +++ b/launcher/minecraft/World.cpp @@ -198,7 +198,8 @@ int64_t calculateWorldSize(const QFileInfo &file) { QDirIterator it(file.absolutePath(), QDirIterator::Subdirectories); int64_t total = 0; - while (it.hasNext()) { + while (it.hasNext()) + { total += it.fileInfo().size(); it.next(); }