Get rid of image->frame_count

This commit is contained in:
twinaphex 2016-05-13 10:10:23 +02:00
parent 101539b489
commit a283923393
2 changed files with 0 additions and 3 deletions

View File

@ -185,7 +185,6 @@ static int rarch_main_data_image_iterate_transfer(nbio_handle_t *nbio)
goto error;
}
nbio->image.frame_count++;
return 0;
error:
@ -200,7 +199,6 @@ static void rarch_task_image_load_free_internal(nbio_handle_t *nbio)
image->handle = NULL;
image->cb = NULL;
image->frame_count = 0;
}
static int cb_nbio_generic(nbio_handle_t *nbio, size_t *len)

View File

@ -65,7 +65,6 @@ typedef struct nbio_image_handle
size_t size;
unsigned processing_pos_increment;
unsigned pos_increment;
uint64_t frame_count;
int processing_final_state;
unsigned status;
} nbio_image_handle_t;