diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-12 07:52:49 -0400 |
|---|---|---|
| committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-05 15:49:26 -0400 |
| commit | 7d1b974bcaf72c32910dcf4ff2d435f91cf40609 (patch) | |
| tree | 64c69a14a9135b0027dea0d7e832e52710d7d8a8 /src/video_core/gpu_synch.h | |
| parent | 61697864c3c8abc35ce957f5f0a0dacd7a8e96f9 (diff) | |
GPU: Correct Interrupts to interrupt on syncpt/value instead of event, mirroring hardware
Diffstat (limited to 'src/video_core/gpu_synch.h')
| -rw-r--r-- | src/video_core/gpu_synch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_synch.h b/src/video_core/gpu_synch.h index 09bda854a..58d258503 100644 --- a/src/video_core/gpu_synch.h +++ b/src/video_core/gpu_synch.h @@ -27,7 +27,7 @@ public: void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override; protected: - void TriggerCpuInterrupt(const u32 event_id) const override {} + void TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const override {} }; } // namespace VideoCommon |
