Adjusted where selectionbox is defined

This commit is contained in:
MysterD 2021-07-31 20:53:11 -07:00
parent 2580e6a681
commit 922499dada
3 changed files with 8 additions and 5 deletions

View file

@ -3569,3 +3569,8 @@ const f32 font_normal_widths[] = {
/* { | } ~ DEL */ /* { | } ~ DEL */
0.3125f, 0.2500f, 0.3125f, 0.5000f, 0.5000f 0.3125f, 0.2500f, 0.3125f, 0.5000f, 0.5000f
}; };
ALIGNED8 u8 texture_selectionbox_icon[] = {
#include "textures/segment2/custom_selectionbox_icon.rgba16.inc.c"
};

View file

@ -29,7 +29,7 @@ f32 djui_gfx_get_scale(void) {
wm_api->get_dimensions(&windowWidth, &windowHeight); wm_api->get_dimensions(&windowWidth, &windowHeight);
if (windowHeight < 720 - 64) { if (windowHeight < 720 - 64) {
return 0.5f; return 0.5f;
} else if (windowHeight < 1440 - 64) { } else if (windowHeight < 1440 + 64) {
return 1.0f; return 1.0f;
} else { } else {
return 2.0f; return 2.0f;

View file

@ -2,9 +2,7 @@
#include <string.h> #include <string.h>
#include "djui.h" #include "djui.h"
ALIGNED8 static u8 texture_selectionbox_icon[] = { extern ALIGNED8 u8 texture_selectionbox_icon[];
#include "textures/segment2/custom_selectionbox_icon.rgba16.inc.c"
};
static void djui_selectionbox_set_default_style(struct DjuiBase* base) { static void djui_selectionbox_set_default_style(struct DjuiBase* base) {
struct DjuiSelectionbox* selectionbox = (struct DjuiSelectionbox*)base; struct DjuiSelectionbox* selectionbox = (struct DjuiSelectionbox*)base;