summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCJBok <cjbok@ziggo.nl>2020-01-29 00:02:28 +0100
committerCJBok <cjbok@ziggo.nl>2020-01-29 00:02:28 +0100
commit6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9 (patch)
tree5d0c46e912db60ada650d0583482617920a34b42
parentGUI: Togglable graphics settings buttons in status bar (diff)
downloadyuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.gz
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.bz2
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.lz
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.xz
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.tar.zst
yuzu-6e87111f91ebfe1a0b9f544fd0b5d7d7262b8fe9.zip
-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 135adde06..a32de5ea3 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -457,7 +457,7 @@ void GMainWindow::InitializeWidgets() {
message_label->setFrameStyle(QFrame::NoFrame);
message_label->setContentsMargins(4, 0, 4, 0);
message_label->setAlignment(Qt::AlignLeft);
- statusBar()->addPermanentWidget(message_label, 01);
+ statusBar()->addPermanentWidget(message_label, 1);
emu_speed_label = new QLabel();
emu_speed_label->setToolTip(
@@ -1911,7 +1911,7 @@ void GMainWindow::OnConfigure() {
async_status_button->setChecked(Settings::values.use_asynchronous_gpu_emulation);
#ifdef HAS_VULKAN
renderer_status_button->setChecked(
- Settings::values.renderer_backend == Settings::RendererBackend::Vulkan ? true : false);
+ Settings::values.renderer_backend == Settings::RendererBackend::Vulkan);
#endif
}