From 48050c33eaaf2e90afe6fa3ee7ffa80828ead3ed Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 25 Feb 2016 23:39:08 -0800 Subject: [PATCH] Qt: Initialize m_useBios --- CHANGES | 1 + src/platform/qt/GameController.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 90495edea..2b1e810e9 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,7 @@ Bugfixes: - SDL: Fix potential joystick crash in games with rumble - Qt: Fix initial state of key mapping - Shaders: Fix AGS-001 shader with some bad drivers + - Qt: Initialize m_useBios Misc: - GBA: Slightly optimize GBAProcessEvents - Qt: Add preset for DualShock 4 diff --git a/src/platform/qt/GameController.cpp b/src/platform/qt/GameController.cpp index e07b4ec10..9871d5102 100644 --- a/src/platform/qt/GameController.cpp +++ b/src/platform/qt/GameController.cpp @@ -40,6 +40,7 @@ GameController::GameController(QObject* parent) , m_inactiveKeys(0) , m_logLevels(0) , m_gameOpen(false) + , m_useBios(false) , m_audioThread(new QThread(this)) , m_audioProcessor(AudioProcessor::create()) , m_pauseAfterFrame(false)