diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-03-15 17:27:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-15 17:27:07 -0400 |
| commit | 99cde4e26912f514c1cdac8e46e2145d29fa1585 (patch) | |
| tree | 84a5a5b09958bf06ae496bbd681cee038e7e3233 /Source/Core | |
| parent | 1bd3e79fda43a1bc13a1c938a2a2beb11919cd69 (diff) | |
| parent | 16d75eadb517f22bebe3d17979f6db793e9b004d (diff) | |
Merge pull request #13395 from jordan-woyak/vi-HORIZONTAL_BEAM_POSITION-ticks
VideoInterface: Update m_ticks_last_line_start from the event's ticks value.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/HW/VideoInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/VideoInterface.cpp b/Source/Core/Core/HW/VideoInterface.cpp index c045d7651e..21346534ec 100644 --- a/Source/Core/Core/HW/VideoInterface.cpp +++ b/Source/Core/Core/HW/VideoInterface.cpp @@ -941,7 +941,7 @@ void VideoInterfaceManager::Update(u64 ticks) if (!(m_half_line_count & 1)) { - m_ticks_last_line_start = core_timing.GetTicks(); + m_ticks_last_line_start = ticks; } // TODO: Findout why skipping interrupts acts as a frameskip |
