summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 442408280..a4ad9d8a8 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::GetYuzuPath(Common::FS::YuzuPath::ConfigDir) / "icons"; 2983 out_icon_path = 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";
@@ -5331,4 +5331,4 @@ int main(int argc, char* argv[]) {
5331 int result = app.exec(); 5331 int result = app.exec();
5332 detached_tasks.WaitForAllTasks(); 5332 detached_tasks.WaitForAllTasks();
5333 return result; 5333 return result;
5334} \ No newline at end of file 5334}