1
0
Fork 0
forked from len0rd/rockbox

m3k simulator: add screen bezel

Change-Id: I4a34e5be7a459f909b81266b70c30f2968068696
This commit is contained in:
Christian Soffke 2021-12-10 18:01:38 +01:00
parent f78a0e5230
commit f1eb0483d6
3 changed files with 15 additions and 15 deletions

View file

@ -523,10 +523,10 @@
#elif defined(FIIO_M3K) || defined(FIIO_M3K_LINUX)
#define UI_TITLE "FiiO M3K"
#define UI_WIDTH 287 /* width of GUI window */
#define UI_HEIGHT 589 /* height of GUI window */
#define UI_LCD_POSX 25
#define UI_LCD_POSY 15
#define UI_WIDTH 335 /* width of GUI window */
#define UI_HEIGHT 686 /* height of GUI window */
#define UI_LCD_POSX 49
#define UI_LCD_POSY 38
#elif defined(SHANLING_Q1)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 898 KiB

Before After
Before After

View file

@ -84,16 +84,16 @@ int key_to_button(int keyboard_button)
}
struct button_map bm[] = {
{ SDLK_ESCAPE, 12, 55, 15, "Power" },
{ SDLK_KP_MINUS, 12, 188, 15, "Volume -" },
{ SDLK_KP_PLUS, 12, 125, 15, "Volume +" },
{ SDLK_SPACE, 12, 255, 15, "Play" },
{ SDLK_UP, 146, 394, 20, "Up" },
{ SDLK_RETURN, 146, 438, 20, "Select" },
{ SDLK_DOWN, 146, 510, 20, "Down" },
{ SDLK_INSERT, 68, 368, 20, "Menu" },
{ SDLK_LEFT, 68, 532, 20, "Left" },
{ SDLK_RIGHT, 224, 532, 20, "Right" },
{ SDLK_BACKSPACE, 224, 368, 20, "Back" },
{ SDLK_ESCAPE, 14, 64, 15, "Power" },
{ SDLK_KP_MINUS, 14, 220, 15, "Volume -" },
{ SDLK_KP_PLUS, 14, 140, 15, "Volume +" },
{ SDLK_SPACE, 14, 300, 15, "Play" },
{ SDLK_UP, 170, 445, 25, "Up" },
{ SDLK_RETURN, 170, 520, 25, "Select" },
{ SDLK_DOWN, 170, 600, 25, "Down" },
{ SDLK_INSERT, 79, 428, 25, "Menu" },
{ SDLK_LEFT, 79, 621, 25, "Left" },
{ SDLK_RIGHT, 260, 621, 25, "Right" },
{ SDLK_BACKSPACE, 260, 428, 25, "Back" },
{ 0, 0, 0, 0, "None" }
};