Update ini parse check formatting

Co-authored-by: SaltySnail <51403141+SaltySnail@users.noreply.github.com>
This commit is contained in:
Tixx 2025-06-20 23:04:07 +02:00 committed by GitHub
parent 303fc55d94
commit a5c02217fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,9 +48,9 @@ std::filesystem::path GetGamePath() {
startupIni.close();
auto ini = Utils::ParseINI(contents);
if (ini.empty()) {
if (ini.empty())
warn("Failed to parse startup.ini");
} else
else
debug("Successfully parsed startup.ini");
std::wstring userPath;