Remove file transfer frame_count

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

View File

@ -44,7 +44,6 @@ static int rarch_main_data_nbio_iterate_transfer(nbio_handle_t *nbio)
return -1;
}
nbio->frame_count++;
return 0;
}
@ -109,6 +108,5 @@ task_finished:
nbio_free(nbio->handle);
nbio->handle = NULL;
nbio->is_finished = false;
nbio->frame_count = 0;
free(nbio);
}

View File

@ -77,7 +77,6 @@ typedef struct nbio_handle
transfer_cb_t cb;
struct nbio_t *handle;
unsigned pos_increment;
uint64_t frame_count;
msg_queue_t *msg_queue;
unsigned status;
} nbio_handle_t;