ui_msg_window_state - turn title and text into pointers

This commit is contained in:
twinaphex 2016-06-08 06:37:00 +02:00
parent a6406a57ca
commit 1fc0009cdc

View File

@ -50,8 +50,8 @@ enum ui_msg_window_response
typedef struct ui_msg_window_state
{
enum ui_msg_window_buttons buttons;
char text[256];
char title[256];
char *text;
char *title;
} ui_msg_window_state;
typedef struct ui_msg_window