VideoInterface: Update m_ticks_last_line_start from the event's ticks
value rather than the potentially "cycles late" value.
This commit is contained in:
parent
3c5da38177
commit
16d75eadb5
|
@ -916,7 +916,7 @@ void VideoInterfaceManager::Update(u64 ticks)
|
|||
auto& core_timing = m_system.GetCoreTiming();
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue