summaryrefslogtreecommitdiff
path: root/src/core/hardware_interrupt_manager.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-06-12 07:52:49 -0400
committerGravatar FernandoS272019-07-05 15:49:26 -0400
commit7d1b974bcaf72c32910dcf4ff2d435f91cf40609 (patch)
tree64c69a14a9135b0027dea0d7e832e52710d7d8a8 /src/core/hardware_interrupt_manager.h
parentnvflinger: Make the force 30 fps still force 30 fps (diff)
downloadyuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.gz
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.xz
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.zip
GPU: Correct Interrupts to interrupt on syncpt/value instead of event, mirroring hardware
Diffstat (limited to 'src/core/hardware_interrupt_manager.h')
-rw-r--r--src/core/hardware_interrupt_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hardware_interrupt_manager.h b/src/core/hardware_interrupt_manager.h
index fc565c88b..590392f75 100644
--- a/src/core/hardware_interrupt_manager.h
+++ b/src/core/hardware_interrupt_manager.h
@@ -14,7 +14,7 @@ public:
14 InterruptManager(Core::System& system); 14 InterruptManager(Core::System& system);
15 ~InterruptManager() = default; 15 ~InterruptManager() = default;
16 16
17 void InterruptGPU(const u32 event_index); 17 void GPUInterruptSyncpt(const u32 syncpoint_id, const u32 value);
18 18
19private: 19private:
20 Core::System& system; 20 Core::System& system;