Remove unused variables

This commit is contained in:
Twinaphex 2020-05-28 23:26:17 +02:00
parent 7759c83b13
commit b697ff8acd
2 changed files with 1 additions and 2 deletions

View File

@ -2152,7 +2152,6 @@ static void materialui_render_messagebox(materialui_handle_t *mui,
int y = 0;
int usable_width = 0;
int longest_width = 0;
size_t longest_len = 0;
struct string_list *list = NULL;
char wrapped_message[MENU_SUBLABEL_MAX_LENGTH];

View File

@ -900,7 +900,7 @@ static void xmb_render_messagebox_internal(
xmb_handle_t *xmb, const char *message)
{
unsigned i, y_position;
int x, y, longest = 0, longest_width = 0;
int x, y, longest_width = 0;
float line_height = 0;
int usable_width = 0;
struct string_list *list = NULL;