This commit is contained in:
twinaphex 2020-07-18 16:54:14 +02:00
parent 0ccb86d130
commit 04a0c55add
3 changed files with 0 additions and 5 deletions

View File

@ -24,8 +24,6 @@ typedef struct network
unsigned video_height;
unsigned screen_width;
unsigned screen_height;
void *ctx_data;
const gfx_ctx_driver_t *ctx_driver;
char address[256];
uint16_t port;
int fd;

View File

@ -29,8 +29,6 @@ typedef struct sixel
unsigned video_height;
unsigned screen_width;
unsigned screen_height;
void *ctx_data;
const gfx_ctx_driver_t *ctx_driver;
} sixel_t;
#endif

View File

@ -341,7 +341,6 @@ static bool network_gfx_alive(void *data)
bool resize = false;
network_video_t *network = (network_video_t*)data;
/* Needed because some context drivers don't track their sizes */
video_driver_get_size(&temp_width, &temp_height);
if (temp_width != 0 && temp_height != 0)