FileUtil: Remove redundant statement

This commit is contained in:
Dentomologist 2022-02-25 21:07:39 -08:00
parent 0965724ed2
commit 01bd5e15ba
1 changed files with 0 additions and 1 deletions

View File

@ -859,7 +859,6 @@ std::string GetExePath()
}
#elif defined(__APPLE__)
result = GetBundleDirectory();
result = result.substr(0, result.find_last_of("Dolphin.app/Contents/MacOS") + 1);
#else
char dolphin_exe_path[PATH_MAX];
ssize_t len = ::readlink("/proc/self/exe", dolphin_exe_path, sizeof(dolphin_exe_path));