From c2943e28d9a4d3da92c01d806bc5c4748c1ba73f Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 23 Jul 2009 17:24:45 +0000 Subject: [PATCH] allow hud editor to move elements to the bottom screen --- desmume/src/GPU_osd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/GPU_osd.cpp b/desmume/src/GPU_osd.cpp index a92f4fd1c..8ba060040 100644 --- a/desmume/src/GPU_osd.cpp +++ b/desmume/src/GPU_osd.cpp @@ -81,7 +81,7 @@ void EditHud(s32 x, s32 y, HudStruct *hudstruct) { if(hud.x < 0) hud.x = 0; if(hud.y < 0) hud.y = 0; if(hud.x > 245)hud.x = 245; //margins - if(hud.y > 180)hud.y = 180; + if(hud.y > 384-16)hud.y = 384-16; if(hud.clicked) break;//prevent items from grouping together