From 85d4fef6c95b5e83621219de583a7b98f4d37121 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Sat, 29 Nov 2025 20:10:12 +0200 Subject: [PATCH] fixed linux? --- src/core/emulator_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/emulator_settings.cpp b/src/core/emulator_settings.cpp index 5ae11062f..f1eb89e1a 100644 --- a/src/core/emulator_settings.cpp +++ b/src/core/emulator_settings.cpp @@ -16,7 +16,7 @@ namespace nlohmann { template <> struct adl_serializer { static void to_json(json& j, const std::filesystem::path& p) { - j = p.u8string(); + j = p.string(); } static void from_json(const json& j, std::filesystem::path& p) { p = j.get();