diff options
author | Franco M <francomaro@gmail.com> | 2023-11-09 05:53:10 +0100 |
---|---|---|
committer | Franco M <francomaro@gmail.com> | 2023-11-09 05:53:10 +0100 |
commit | c9038af29e05458bd2f647158cc2903132c4c560 (patch) | |
tree | 08bb60ef7975016d7dea95afbf29f366c6d3649f | |
parent | Minor changes (diff) | |
download | yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.gz yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.bz2 yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.lz yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.xz yuzu-c9038af29e05458bd2f647158cc2903132c4c560.tar.zst yuzu-c9038af29e05458bd2f647158cc2903132c4c560.zip |
-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 // Get path to Yuzu icons directory & icon extension std::string ico_extension = "png"; #if defined(_WIN32) - out_icon_path = Common::FS::YuzuPath::IconsDir; + out_icon_path = Common::FS::GetYuzuPath(Common::FS::YuzuPath::IconsDir); ico_extension = "ico"; #elif defined(__linux__) || defined(__FreeBSD__) out_icon_path = Common::FS::GetDataDirectory("XDG_DATA_HOME") / "icons/hicolor/256x256"; |