fs: fix get_executable_dir

This commit is contained in:
Megamouse 2024-01-20 23:28:04 +01:00
parent 8a87dc63b1
commit 50fcec63e0

View file

@ -1960,7 +1960,7 @@ std::string fs::get_executable_dir()
return exe_path;
}
return get_parent_dir(exe_path);
return get_parent_dir(exe_path) + "/";
}();
return s_exe_dir;