Skip to content

Commit 0961023

Browse files
committed
fix: fix config file name
1 parent 0b60979 commit 0961023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pl/Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ char const* pl_mods_path = "./plugins/"; // TODO: change to mods
1919
nlohmann::json config;
2020

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

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

0 commit comments

Comments
 (0)