From e1046eb956110c8f529e13e41d417fe37f03ed90 Mon Sep 17 00:00:00 2001 From: Brennen Murphy Date: Wed, 19 Jul 2023 14:08:48 -0400 Subject: [PATCH] Fixed random placement of background (for test) --- extras/menus/xMenu/src/submenu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/menus/xMenu/src/submenu.cpp b/extras/menus/xMenu/src/submenu.cpp index 0b5a9b0a2..654e725f9 100644 --- a/extras/menus/xMenu/src/submenu.cpp +++ b/extras/menus/xMenu/src/submenu.cpp @@ -157,7 +157,9 @@ int SubMenu::blitSetup() { void SubMenu::run() { this->blitSetup(); - this->blit_rect_fill(20, 120, 4, 8); + //static int submenu_start_x = (pwidth - window_pixel) / 2; + //void blit_rect_fill(int sx, int sy, int w, int h); + this->blit_rect_fill(80, 80, 4, 8); this->blit_string(200, 100, "TEST"); sceKernelDelayThread(5000000); }