From 50fcec63e0afac45d4894ceea19da90ae51d25be Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 20 Jan 2024 23:28:04 +0100 Subject: [PATCH] fs: fix get_executable_dir --- Utilities/File.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/File.cpp b/Utilities/File.cpp index 6414f6981e..80720e3646 100644 --- a/Utilities/File.cpp +++ b/Utilities/File.cpp @@ -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;