Moved the gfx for the current active entry down by 10 pixels.

This commit is contained in:
yellows8 2019-08-05 16:49:59 -04:00
parent d9effc3143
commit ea4db4ff02
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -291,9 +291,9 @@ static void drawEntry(menuEntry_s* me, int off_x, int is_active) {
}
if (is_active && largeimg) {
drawImage(117, 100, 256, 256, largeimg, IMAGE_MODE_RGB24);
drawImage(117, 100+10, 256, 256, largeimg, IMAGE_MODE_RGB24);
shadow_start_y = 100+256;
shadow_start_y = 100+10+256;
border_start_x = 117;
border_end_x = 117+256;
@ -321,7 +321,7 @@ static void drawEntry(menuEntry_s* me, int off_x, int is_active) {
if (is_active) {
start_x = 1280 - 790;
start_y = 135;
start_y = 135+10;
DrawTextTruncate(interuimedium30, start_x, start_y + 39, themeCurrent.textColor, tmpstr, 1280 - start_x - 120 ,"...");