diff options
author | Jan <sentrycraft123@gmail.com> | 2023-07-25 16:33:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 16:33:05 +0200 |
commit | 2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5 (patch) | |
tree | c9552e5562837d1390aa7f3c3718875496e89144 /NorthstarDLL/mods | |
parent | ddb4670354a5f29e6ebd08f625edb2576de700e6 (diff) | |
download | NorthstarLauncher-2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5.tar.gz NorthstarLauncher-2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5.zip |
Replace forward slashes with windows path separators (#514)
Replace forward slashes with backward slashes in some string constants to make things more consistent.
Diffstat (limited to 'NorthstarDLL/mods')
-rw-r--r-- | NorthstarDLL/mods/modmanager.h | 8 |
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"}; |