mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
overlays: fix graph offset error after applying new config
I already had this figured out last time but forgot the dynamic config use case.
This commit is contained in:
parent
84f123041a
commit
1650dd1c7d
1 changed files with 4 additions and 7 deletions
|
@ -253,18 +253,15 @@ namespace rsx
|
|||
reset_transforms();
|
||||
force_next_update();
|
||||
|
||||
if (m_is_initialised)
|
||||
if (!m_is_initialised)
|
||||
{
|
||||
update();
|
||||
return;
|
||||
m_update_timer.Start();
|
||||
m_frametime_timer.Start();
|
||||
}
|
||||
|
||||
m_update_timer.Start();
|
||||
m_frametime_timer.Start();
|
||||
|
||||
update();
|
||||
|
||||
// The text might have changed during the initial update. Recalculate positions.
|
||||
// The text might have changed during the update. Recalculate positions.
|
||||
reset_transforms();
|
||||
|
||||
m_is_initialised = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue