aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan <sentrycraft123@gmail.com>2023-07-25 16:33:05 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2023-07-25 16:40:31 +0200
commitabc65788fdbbd5dd82b8a3f640652daeb6e1300b (patch)
tree71398c51756f9690db82134a743c1b632e2fb3c6
parentb6738a8a49c40fc638394408e8cd4a37b36c5648 (diff)
downloadNorthstarLauncher-abc65788fdbbd5dd82b8a3f640652daeb6e1300b.tar.gz
NorthstarLauncher-abc65788fdbbd5dd82b8a3f640652daeb6e1300b.zip
Replace forward slashes with windows path separators (#514)v1.17.1-rc3v1.17.1-rc2
Replace forward slashes with backward slashes in some string constants to make things more consistent. (cherry picked from commit 2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5)
-rw-r--r--NorthstarDLL/mods/modmanager.h8
1 files changed, 4 insertions, 4 deletions
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 <vector>
#include <filesystem>
-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<std::string> MODS_BLACKLIST = {"Mod Settings"};