From 67a0954c32f69b1d624c792c4953b704a78f69bb Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 27 Jan 2020 22:29:00 +0100 Subject: [PATCH] - fixed option menu positioning. --- source/common/menu/optionmenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/menu/optionmenu.cpp b/source/common/menu/optionmenu.cpp index 869d0106b..43770e808 100644 --- a/source/common/menu/optionmenu.cpp +++ b/source/common/menu/optionmenu.cpp @@ -76,7 +76,7 @@ void DrawOptionText(int x, int y, int color, const char *text, bool grayed) int DOptionMenu::GetPosition() { - return mDesc->mPosition * screen->GetHeight() / 1080; // y position uses a 1920x1080 screen as reference but has to adjust to scaled 320x200 content. + return mDesc->mPosition * screen->GetHeight() * 2 / CleanYfac_1 / 1080; // y position uses a 1920x1080 screen as reference but has to adjust to scaled 320x200 content. } //=============================================================================