diff options
| author | boludoz <francomaro@gmail.com> | 2023-10-15 03:16:29 -0300 | 
|---|---|---|
| committer | boludoz <francomaro@gmail.com> | 2023-10-15 03:16:29 -0300 | 
| commit | 0a75519ab590e250c94dc04b3f6072a69ef7e96b (patch) | |
| tree | 54deace8df1a942d1c7f04a80b13c56714a59ff7 | |
| parent | 3062a35eb1297067446156c43e9d0df2f684edff (diff) | |
Fixes and improvements
| -rw-r--r-- | src/common/fs/path_util.cpp | 35 | ||||
| -rw-r--r-- | src/yuzu/main.h | 2 | ||||
| -rw-r--r-- | src/yuzu/util/util.cpp | 4 | 
3 files changed, 30 insertions, 11 deletions
| diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp index a461161ed..f030939ce 100644 --- a/src/common/fs/path_util.cpp +++ b/src/common/fs/path_util.cpp @@ -363,13 +363,28 @@ fs::path GetDesktopPath() {          LOG_ERROR(Common_Filesystem,                    "[GetDesktopPath] Failed to get the path to the desktop directory");      } +    return fs::path{};  #else -    fs::path shortcut_path = GetHomeDirectory() / "Desktop"; -    if (fs::exists(shortcut_path)) { -        return shortcut_path; +    fs::path shortcut_path{}; + +    // Array of possible desktop +    std::vector<std::string> desktop_paths = { +        "Desktop",      "Escritorio", "Bureau",       "Skrivebord", "Plocha", +        "Skrivbord",    "Desktop",    "Рабочий стол", "Pulpit",     "Área de Trabalho", +        "Робочий стіл", "Bureaublad", "デスクトップ", "桌面",       "Pöytä", +        "바탕 화면",    "바탕 화면",  "سطح المكتب",   "دسکتاپ",     "שולחן עבודה"}; + +    for (auto& path : desktop_paths) { +        if (fs::exists(GetHomeDirectory() / path)) { +            return path; +        }      } + +    LOG_ERROR(Common_Filesystem, +              "[GetDesktopPath] Failed to get the path to the desktop directory"); + +    return shortcut_path;  #endif -    return fs::path{};  }  fs::path GetAppsShortcutsPath() { @@ -387,16 +402,20 @@ fs::path GetAppsShortcutsPath() {          LOG_ERROR(Common_Filesystem,                    "[GetAppsShortcutsPath] Failed to get the path to the App Shortcuts directory");      } + +    return fs::path{};  #else      fs::path shortcut_path = GetHomeDirectory() / ".local/share/applications";      if (!fs::exists(shortcut_path)) {          shortcut_path = std::filesystem::path("/usr/share/applications"); -        return shortcut_path; -    } else { -        return shortcut_path; +        if (!fs::exists(shortcut_path)) { +            LOG_ERROR(Common_Filesystem, +                      "[GetAppsShortcutsPath] Failed to get the path to the App Shortcuts " +                      "directory"); +        }      } -#endif      return fs::path{}; +#endif  }  // vvvvvvvvvv Deprecated vvvvvvvvvv // diff --git a/src/yuzu/main.h b/src/yuzu/main.h index bf6756b48..d7426607f 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -152,7 +152,7 @@ class GMainWindow : public QMainWindow {          UI_EMU_STOPPING,      }; -    const enum { +    enum {          CREATE_SHORTCUT_MSGBOX_FULLSCREEN_YES,          CREATE_SHORTCUT_MSGBOX_SUCCESS,          CREATE_SHORTCUT_MSGBOX_ERROR, diff --git a/src/yuzu/util/util.cpp b/src/yuzu/util/util.cpp index 4d199ebd1..9755004ad 100644 --- a/src/yuzu/util/util.cpp +++ b/src/yuzu/util/util.cpp @@ -144,7 +144,7 @@ bool SaveIconToFile(const QImage& image, const std::filesystem::path& icon_path)      }      return true; -#endif - +#else      return false; +#endif  } | 
