Get rid of image->frame_count
This commit is contained in:
parent
101539b489
commit
a283923393
|
@ -185,7 +185,6 @@ static int rarch_main_data_image_iterate_transfer(nbio_handle_t *nbio)
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
nbio->image.frame_count++;
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
|
@ -200,7 +199,6 @@ static void rarch_task_image_load_free_internal(nbio_handle_t *nbio)
|
||||||
|
|
||||||
image->handle = NULL;
|
image->handle = NULL;
|
||||||
image->cb = NULL;
|
image->cb = NULL;
|
||||||
image->frame_count = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cb_nbio_generic(nbio_handle_t *nbio, size_t *len)
|
static int cb_nbio_generic(nbio_handle_t *nbio, size_t *len)
|
||||||
|
|
|
@ -65,7 +65,6 @@ typedef struct nbio_image_handle
|
||||||
size_t size;
|
size_t size;
|
||||||
unsigned processing_pos_increment;
|
unsigned processing_pos_increment;
|
||||||
unsigned pos_increment;
|
unsigned pos_increment;
|
||||||
uint64_t frame_count;
|
|
||||||
int processing_final_state;
|
int processing_final_state;
|
||||||
unsigned status;
|
unsigned status;
|
||||||
} nbio_image_handle_t;
|
} nbio_image_handle_t;
|
||||||
|
|
Loading…
Reference in New Issue