Fix 351files resolution & update to latest commit
Resolution width and height is swapped and font size is to small. Also updating to latest commit of 351files
This commit is contained in:
parent
1ec63c7406
commit
f9d77ea628
1 changed files with 12 additions and 10 deletions
|
@ -13,29 +13,30 @@ diff --git a/src/def.h b/src/def.h
|
|||
index 92d1a01..db4fec4 100644
|
||||
--- a/src/def.h
|
||||
+++ b/src/def.h
|
||||
@@ -85,6 +85,21 @@
|
||||
@@ -85,6 +85,22 @@
|
||||
#define KEYBOARD_MARGIN 8
|
||||
#define KEYBOARD_KEY_SPACING 4
|
||||
|
||||
+// Parameters for RG552
|
||||
+#elif defined(DEVICE_RG552)
|
||||
+ #define SCREEN_WIDTH 1152
|
||||
+ #define SCREEN_HEIGHT 1920
|
||||
+ #define SCREEN_WIDTH 1920
|
||||
+ #define SCREEN_HEIGHT 1152
|
||||
+ #define HARDWARE_ACCELERATION 0
|
||||
+ #define FULLSCREEN 1
|
||||
+ #define FONT_NAME "NotoSans-Regular.ttf"
|
||||
+ #define FONT_NAME_MONO "NotoSansMono-Regular.ttf"
|
||||
+ #define FONT_SIZE 20
|
||||
+ #define LINE_HEIGHT 32
|
||||
+ #define ICON_SIZE 24
|
||||
+ #define MARGIN_X 10
|
||||
+ #define KEYBOARD_MARGIN 8
|
||||
+ #define KEYBOARD_KEY_SPACING 4
|
||||
+ #define FONT_SIZE 48
|
||||
+ #define LINE_HEIGHT 72
|
||||
+ #define ICON_SIZE 58
|
||||
+ #define MARGIN_X 24
|
||||
+ #define KEYBOARD_MARGIN 19
|
||||
+ #define KEYBOARD_KEY_SPACING 10
|
||||
+ #define KEYBOARD_SYMBOL_SIZE 58
|
||||
+
|
||||
// Paramaters for desktop PC
|
||||
#else
|
||||
#define SCREEN_WIDTH 640
|
||||
@@ -124,7 +139,25 @@
|
||||
@@ -124,7 +139,26 @@
|
||||
#define VIEWER_SCROLL_SPEED 20
|
||||
|
||||
// Button events
|
||||
|
@ -58,6 +59,7 @@ index 92d1a01..db4fec4 100644
|
|||
+ #define BUTTON_HELD_PAGEUP SDL_JoystickGetButton(g_joystick, 4) || SDL_JoystickGetButton(g_joystick, 6)
|
||||
+ #define BUTTON_HELD_PAGEDOWN SDL_JoystickGetButton(g_joystick, 5) || SDL_JoystickGetButton(g_joystick, 7)
|
||||
+ #define BUTTON_HELD_SELECT SDL_JoystickGetButton(g_joystick, 3)
|
||||
+ #define BUTTON_HELD_VALIDATE SDL_JoystickGetButton(g_joystick, 1)
|
||||
+#elif defined(DEVICE_RG351P)
|
||||
#define BUTTON_PRESSED_UP event.type == SDL_JOYHATMOTION && event.jhat.value == SDL_HAT_UP
|
||||
#define BUTTON_PRESSED_DOWN event.type == SDL_JOYHATMOTION && event.jhat.value == SDL_HAT_DOWN
|
||||
|
|
Loading…
Reference in a new issue