From 2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 25 Jul 2023 16:33:05 +0200 Subject: Replace forward slashes with windows path separators (#514) Replace forward slashes with backward slashes in some string constants to make things more consistent. --- NorthstarDLL/mods/modmanager.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'NorthstarDLL/mods/modmanager.h') diff --git a/NorthstarDLL/mods/modmanager.h b/NorthstarDLL/mods/modmanager.h index 6f89f9f2..15367e4d 100644 --- a/NorthstarDLL/mods/modmanager.h +++ b/NorthstarDLL/mods/modmanager.h @@ -8,11 +8,11 @@ #include #include -const std::string MOD_FOLDER_SUFFIX = "/mods"; -const std::string THUNDERSTORE_MOD_FOLDER_SUFFIX = "/packages"; -const std::string REMOTE_MOD_FOLDER_SUFFIX = "/runtime/remote/mods"; +const std::string MOD_FOLDER_SUFFIX = "\\mods"; +const std::string THUNDERSTORE_MOD_FOLDER_SUFFIX = "\\packages"; +const std::string REMOTE_MOD_FOLDER_SUFFIX = "\\runtime\\remote\\mods"; const fs::path MOD_OVERRIDE_DIR = "mod"; -const std::string COMPILED_ASSETS_SUFFIX = "/runtime/compiled"; +const std::string COMPILED_ASSETS_SUFFIX = "\\runtime\\compiled"; const std::set MODS_BLACKLIST = {"Mod Settings"}; -- cgit v1.2.3