Skip to content

Commit

Permalink
fix: fix config file name
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Jul 12, 2024
1 parent 0b60979 commit 0961023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pl/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ char const* pl_mods_path = "./plugins/"; // TODO: change to mods
nlohmann::json config;

void loadConfig() try {
auto configPath = std::filesystem::path{u8"PreloaderConfig.json"};
auto configPath = std::filesystem::path{u8"PreLoaderConfig.json"};

try {
if (std::filesystem::exists("./mods/")) { pl_mods_path = "./mods/"; } // TODO: remove when release
Expand Down

0 comments on commit 0961023

Please sign in to comment.