mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-11 06:40:39 +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
@ -253,18 +253,15 @@ namespace rsx
|
|||||||
reset_transforms();
|
reset_transforms();
|
||||||
force_next_update();
|
force_next_update();
|
||||||
|
|
||||||
if (m_is_initialised)
|
if (!m_is_initialised)
|
||||||
{
|
{
|
||||||
update();
|
m_update_timer.Start();
|
||||||
return;
|
m_frametime_timer.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
m_update_timer.Start();
|
|
||||||
m_frametime_timer.Start();
|
|
||||||
|
|
||||||
update();
|
update();
|
||||||
|
|
||||||
// The text might have changed during the initial update. Recalculate positions.
|
// The text might have changed during the update. Recalculate positions.
|
||||||
reset_transforms();
|
reset_transforms();
|
||||||
|
|
||||||
m_is_initialised = true;
|
m_is_initialised = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user