overlays: fix center options when graphs are shown

This commit is contained in:
Megamouse 2019-11-12 23:33:59 +01:00
parent d6b0361a02
commit dd1707bd46
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace rsx
if (g_cfg.video.perf_overlay.center_y)
{
pos.y = (virtual_height - m_body.h) / 2;
pos.y = (virtual_height - m_body.h - bottom_margin) / 2;
}
elm.set_pos(pos.x, pos.y);