diff options
Diffstat (limited to 'loader/filesystem.cpp')
-rw-r--r-- | loader/filesystem.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/filesystem.cpp b/loader/filesystem.cpp index b86915d4..a7926da1 100644 --- a/loader/filesystem.cpp +++ b/loader/filesystem.cpp @@ -75,7 +75,8 @@ void loader_impl::set_application_working_directory() if (c == '/') c = '\\'; #endif - chdir(path); + chdir(path) && + chdir("share/floormat"_s); } else fm_warn("can't find install prefix!"); |