diff options
author | boludoz <[email protected]> | 2023-10-18 02:35:23 -0300 |
---|---|---|
committer | boludoz <[email protected]> | 2023-10-18 02:35:23 -0300 |
commit | ac6290bea76e9719ef7806dab7f92ab53fdd27d0 (patch) | |
tree | 994bbf6b3b358bf75855cb66c42433a2bac2514a /src/yuzu/main.h | |
parent | 4051bbbed7f0160a6565212affbbb24553a9b510 (diff) | |
download | yuzu-android-ac6290bea76e9719ef7806dab7f92ab53fdd27d0.tar.gz yuzu-android-ac6290bea76e9719ef7806dab7f92ab53fdd27d0.zip |
TODO: Implement shortcut creation for Apple.
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index d203e5301..7a1a97f33 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -441,6 +441,8 @@ private: bool ConfirmShutdownGame(); QString GetTasStateDescription() const; +// TODO: Implement shortcut creation for macOS +#if !defined(__APPLE__) bool CreateShortcutMessagesGUI(QWidget* parent, int imsg, const QString& game_title); bool MakeShortcutIcoPath(const u64 program_id, const std::string_view game_file_name, std::filesystem::path& out_icon_path); @@ -449,6 +451,7 @@ private: const std::filesystem::path& command, const std::string& arguments, const std::string& categories, const std::string& keywords, const std::string& name); +#endif /** * Mimic the behavior of QMessageBox::question but link controller navigation to the dialog * The only difference is that it returns a boolean. |