summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-03-29 02:52:27 +0200
committergerman77 <juangerman-13@hotmail.com>2022-03-29 02:52:27 +0200
commit90c846d1ad74292b7bff13b1b449956f2ca74b1b (patch)
tree6460fc6f4bdb0d499a9ddd2cd87097efe0a575e4
parentMerge pull request #8095 from bylaws/master (diff)
downloadyuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar.gz
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar.bz2
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar.lz
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar.xz
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.tar.zst
yuzu-90c846d1ad74292b7bff13b1b449956f2ca74b1b.zip
-rw-r--r--src/yuzu/main.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 3b7058a2b..62d15f8cd 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -293,8 +293,6 @@ GMainWindow::GMainWindow()
MigrateConfigFiles();
- ui->action_Fullscreen->setChecked(false);
-
#if defined(HAVE_SDL2) && !defined(_WIN32)
SDL_InitSubSystem(SDL_INIT_VIDEO);
// SDL disables the screen saver by default, and setting the hint
@@ -312,17 +310,20 @@ GMainWindow::GMainWindow()
}
QString game_path;
+ bool has_gamepath = false;
+ bool is_fullscreen = false;
for (int i = 1; i < args.size(); ++i) {
// Preserves drag/drop functionality
if (args.size() == 2 && !args[1].startsWith(QChar::fromLatin1('-'))) {
game_path = args[1];
+ has_gamepath = true;
break;
}
// Launch game in fullscreen mode
if (args[i] == QStringLiteral("-f")) {
- ui->action_Fullscreen->setChecked(true);
+ is_fullscreen = true;
continue;
}
@@ -365,9 +366,15 @@ GMainWindow::GMainWindow()
}
game_path = args[++i];
+ has_gamepath = true;
}
}
+ // Override fullscreen setting if gamepath or argument is provided
+ if (has_gamepath || is_fullscreen) {
+ ui->action_Fullscreen->setChecked(is_fullscreen);
+ }
+
if (!game_path.isEmpty()) {
BootGame(game_path);
}