summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 328f599f1..2d82df739 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -2195,7 +2195,7 @@ bool GMainWindow::ConfirmChangeGame() {
2195 if (emu_thread == nullptr) 2195 if (emu_thread == nullptr)
2196 return true; 2196 return true;
2197 2197
2198 auto answer = QMessageBox::question( 2198 const auto answer = QMessageBox::question(
2199 this, tr("yuzu"), 2199 this, tr("yuzu"),
2200 tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."), 2200 tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."),
2201 QMessageBox::Yes | QMessageBox::No, QMessageBox::No); 2201 QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
@@ -2206,7 +2206,7 @@ bool GMainWindow::ConfirmForceLockedExit() {
2206 if (emu_thread == nullptr) 2206 if (emu_thread == nullptr)
2207 return true; 2207 return true;
2208 2208
2209 auto answer = 2209 const auto answer =
2210 QMessageBox::question(this, tr("yuzu"), 2210 QMessageBox::question(this, tr("yuzu"),
2211 tr("The currently running application has requested yuzu to not " 2211 tr("The currently running application has requested yuzu to not "
2212 "exit.\n\nWould you like to bypass this and exit anyway?"), 2212 "exit.\n\nWould you like to bypass this and exit anyway?"),