diff options
| author | 2023-11-09 04:53:10 +0000 | |
|---|---|---|
| committer | 2023-11-09 04:53:10 +0000 | |
| commit | c9038af29e05458bd2f647158cc2903132c4c560 (patch) | |
| tree | 08bb60ef7975016d7dea95afbf29f366c6d3649f /src | |
| parent | Minor changes (diff) | |
| download | yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.gz yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.xz yuzu-c9038af29e05458bd2f647158cc2903132c4c560.zip | |
Fix out_icon_path = Common::FS::GetYuzuPath(Common::FS::YuzuPath::IconsDir);
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index a4ad9d8a8..e0a656a5e 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -2980,7 +2980,7 @@ bool GMainWindow::MakeShortcutIcoPath(const u64 program_id, const std::string_vi | |||
| 2980 | // Get path to Yuzu icons directory & icon extension | 2980 | // Get path to Yuzu icons directory & icon extension |
| 2981 | std::string ico_extension = "png"; | 2981 | std::string ico_extension = "png"; |
| 2982 | #if defined(_WIN32) | 2982 | #if defined(_WIN32) |
| 2983 | out_icon_path = Common::FS::YuzuPath::IconsDir; | 2983 | out_icon_path = Common::FS::GetYuzuPath(Common::FS::YuzuPath::IconsDir); |
| 2984 | ico_extension = "ico"; | 2984 | ico_extension = "ico"; |
| 2985 | #elif defined(__linux__) || defined(__FreeBSD__) | 2985 | #elif defined(__linux__) || defined(__FreeBSD__) |
| 2986 | out_icon_path = Common::FS::GetDataDirectory("XDG_DATA_HOME") / "icons/hicolor/256x256"; | 2986 | out_icon_path = Common::FS::GetDataDirectory("XDG_DATA_HOME") / "icons/hicolor/256x256"; |