mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Fix truncated messagebox messages
This commit is contained in:
parent
c756ff9368
commit
d4ecce48c7
@ -89,7 +89,7 @@ typedef struct mui_handle
|
||||
unsigned icon_size;
|
||||
unsigned margin;
|
||||
unsigned glyph_width;
|
||||
char box_message[255];
|
||||
char box_message[1024];
|
||||
|
||||
struct
|
||||
{
|
||||
|
@ -158,7 +158,7 @@ typedef struct xmb_handle
|
||||
size_t selection_ptr_old;
|
||||
int depth;
|
||||
int old_depth;
|
||||
char box_message[255];
|
||||
char box_message[1024];
|
||||
float x;
|
||||
float alpha;
|
||||
uintptr_t thumbnail;
|
||||
@ -2322,7 +2322,7 @@ static void xmb_frame(void *data)
|
||||
unsigned i, width, height;
|
||||
float item_color[16], coord_black[16], coord_white[16];
|
||||
menu_display_ctx_rotate_draw_t rotate_draw;
|
||||
char msg[255];
|
||||
char msg[1024];
|
||||
char title_msg[255];
|
||||
char title_truncated[255];
|
||||
bool render_background = false;
|
||||
|
@ -223,7 +223,7 @@ typedef struct
|
||||
uint64_t state;
|
||||
struct
|
||||
{
|
||||
char msg[255];
|
||||
char msg[1024];
|
||||
} menu_state;
|
||||
|
||||
char db_playlist_file[PATH_MAX_LENGTH];
|
||||
|
Loading…
Reference in New Issue
Block a user