(XMB) Remove dont_replace_coords

This commit is contained in:
Jean-André Santoni 2016-04-21 03:36:35 +07:00
parent d22b72a892
commit 033ccf4803
2 changed files with 1 additions and 3 deletions

View File

@ -509,8 +509,7 @@ bool menu_display_ctl(enum menu_display_ctl_state state, void *data)
coords.lut_tex_coord = new_tex_coord;
coords.color = (const float*)draw->color;
if (!draw->dont_replace_coords)
draw->coords = &coords;
draw->coords = &coords;
if (!draw->texture)
draw->texture = menu_display_white_texture;

View File

@ -113,7 +113,6 @@ typedef struct menu_display_ctx_draw
float y;
unsigned width;
unsigned height;
bool dont_replace_coords;
struct gfx_coords *coords;
void *matrix_data;
uintptr_t texture;