diff options
| author | JMC47 <JMC4789@gmail.com> | 2021-12-02 07:21:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-02 07:21:41 -0500 |
| commit | c12e4e8ee080e682b515f7990f416db0150e9c02 (patch) | |
| tree | 677ea2d2b440fb82a88c8fdc4b01afa6fc71acdb /Source/Core/VideoCommon/OpcodeDecoding.cpp | |
| parent | 26e4e67d4536835cc1fdf09a5c3ce75404dc8d87 (diff) | |
| parent | f5c550e9cb8f5bbc6a4f9bd77bc84c077671c480 (diff) | |
Merge pull request #10244 from phire/ban-timetravel
Delay singlecore gpu interrupts; Fixes Bomberman Jetters in single core mode.
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp index 00f470d5f4..a1abacc4c6 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp @@ -221,11 +221,11 @@ u8* Run(DataReader src, u32* cycles, bool in_display_list) const u32 bp_cmd = src.Read<u32>(); if constexpr (is_preprocess) { - LoadBPRegPreprocess(bp_cmd); + LoadBPRegPreprocess(bp_cmd, total_cycles); } else { - LoadBPReg(bp_cmd); + LoadBPReg(bp_cmd, total_cycles); INCSTAT(g_stats.this_frame.num_bp_loads); } } |
