From b40544dc55d95ec03e5635f70e628b63351e9070 Mon Sep 17 00:00:00 2001 From: Rachel Powers <508861+Ryex@users.noreply.github.com> Date: Sun, 14 Dec 2025 22:43:22 -0700 Subject: [PATCH] fix: remove locale forcing as unnecessary Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com> --- launcher/main.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/launcher/main.cpp b/launcher/main.cpp index 46368e72e..2bce655d2 100644 --- a/launcher/main.cpp +++ b/launcher/main.cpp @@ -37,13 +37,6 @@ int main(int argc, char* argv[]) { - // try to set the utf-8 locale for the libarchive - for (auto name : { ".UTF-8", "en_US.UTF-8", "C.UTF-8" }) { - if (std::setlocale(LC_CTYPE, name)) { - break; - } - } - // initialize Qt Application app(argc, argv);