Added suffix to version string for debug builds.

This commit is contained in:
23rd 2025-06-29 23:39:14 +03:00
parent ac243136b9
commit abfd37c045

View file

@ -153,5 +153,8 @@ QString currentVersionText() {
} else if (Platform::IsWindowsARM64()) {
result += " arm64";
}
#ifdef _DEBUG
result += " DEBUG";
#endif
return result;
}