From e8ad603cd9eb198911787f747cdea38d424da838 Mon Sep 17 00:00:00 2001 From: Narr the Reg Date: Thu, 14 Dec 2023 20:04:38 -0600 Subject: core: Make sure npad is initialized --- src/core/hid/input_interpreter.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/hid') diff --git a/src/core/hid/input_interpreter.cpp b/src/core/hid/input_interpreter.cpp index a6bdd28f2..072f38a68 100644 --- a/src/core/hid/input_interpreter.cpp +++ b/src/core/hid/input_interpreter.cpp @@ -20,6 +20,9 @@ InputInterpreter::InputInterpreter(Core::System& system) InputInterpreter::~InputInterpreter() = default; void InputInterpreter::PollInput() { + if (npad == nullptr) { + return; + } const auto button_state = npad->GetAndResetPressState(); previous_index = current_index; -- cgit v1.2.3