summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorGravatar wwylele2017-01-15 21:27:00 +0200
committerGravatar wwylele2017-01-16 09:51:44 +0200
commit3c333c53f1f2c8daa3eab8c83d403d0d23682747 (patch)
tree1d2bc35f744cbc4360b3a8ec0ac3690a51b1f96e /src/core/hw/gpu.cpp
parentMerge pull request #2435 from mailwl/gsp-mask (diff)
downloadyuzu-3c333c53f1f2c8daa3eab8c83d403d0d23682747.tar.gz
yuzu-3c333c53f1f2c8daa3eab8c83d403d0d23682747.tar.xz
yuzu-3c333c53f1f2c8daa3eab8c83d403d0d23682747.zip
HID: manages updating itself using correct ticks
Diffstat (limited to 'src/core/hw/gpu.cpp')
-rw-r--r--src/core/hw/gpu.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 1a1ee90b2..58c0d9908 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -15,7 +15,6 @@
15#include "common/vector_math.h" 15#include "common/vector_math.h"
16#include "core/core_timing.h" 16#include "core/core_timing.h"
17#include "core/hle/service/gsp_gpu.h" 17#include "core/hle/service/gsp_gpu.h"
18#include "core/hle/service/hid/hid.h"
19#include "core/hw/gpu.h" 18#include "core/hw/gpu.h"
20#include "core/hw/hw.h" 19#include "core/hw/hw.h"
21#include "core/memory.h" 20#include "core/memory.h"
@@ -551,9 +550,6 @@ static void VBlankCallback(u64 userdata, int cycles_late) {
551 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC0); 550 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC0);
552 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC1); 551 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC1);
553 552
554 // Check for user input updates
555 Service::HID::Update();
556
557 if (!Settings::values.use_vsync && Settings::values.toggle_framelimit) { 553 if (!Settings::values.use_vsync && Settings::values.toggle_framelimit) {
558 FrameLimiter(); 554 FrameLimiter();
559 } 555 }