summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hw/gpu.cpp')
-rw-r--r--src/core/hw/gpu.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 30318fc06..f933a5e8d 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -14,6 +14,7 @@
14#include "core/hle/hle.h" 14#include "core/hle/hle.h"
15#include "core/hle/service/gsp_gpu.h" 15#include "core/hle/service/gsp_gpu.h"
16#include "core/hle/service/dsp_dsp.h" 16#include "core/hle/service/dsp_dsp.h"
17#include "core/hle/service/hid/hid.h"
17 18
18#include "core/hw/hw.h" 19#include "core/hw/hw.h"
19#include "core/hw/gpu.h" 20#include "core/hw/gpu.h"
@@ -295,6 +296,9 @@ static void VBlankCallback(u64 userdata, int cycles_late) {
295 // this. Certain games expect this to be periodically signaled. 296 // this. Certain games expect this to be periodically signaled.
296 DSP_DSP::SignalInterrupt(); 297 DSP_DSP::SignalInterrupt();
297 298
299 // Check for user input updates
300 Service::HID::HIDUpdate();
301
298 // Reschedule recurrent event 302 // Reschedule recurrent event
299 CoreTiming::ScheduleEvent(frame_ticks - cycles_late, vblank_event); 303 CoreTiming::ScheduleEvent(frame_ticks - cycles_late, vblank_event);
300} 304}