mirror of
https://github.com/libretro/RetroArch
synced 2025-03-30 07:20:36 +00:00
Remove NBIO_STATUS_TRANSFER_PARSE_FREE to NBIO_STATUS_TRANSFER_FINISHED
This commit is contained in:
parent
4ad8d3c917
commit
b3faed3906
@ -90,14 +90,13 @@ void task_file_load_handler(retro_task_t *task)
|
||||
case NBIO_STATUS_TRANSFER_PARSE:
|
||||
if (task_file_transfer_iterate_parse(nbio) == -1)
|
||||
task_set_cancelled(task, true);
|
||||
nbio->status = NBIO_STATUS_TRANSFER_PARSE_FREE;
|
||||
nbio->status = NBIO_STATUS_TRANSFER_FINISHED;
|
||||
break;
|
||||
case NBIO_STATUS_TRANSFER:
|
||||
if (task_file_transfer_iterate_transfer(nbio) == -1)
|
||||
nbio->status = NBIO_STATUS_TRANSFER_PARSE;
|
||||
break;
|
||||
case NBIO_STATUS_TRANSFER_PARSE_FREE:
|
||||
default:
|
||||
case NBIO_STATUS_TRANSFER_FINISHED:
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ enum nbio_status_enum
|
||||
NBIO_STATUS_INIT = 0,
|
||||
NBIO_STATUS_TRANSFER,
|
||||
NBIO_STATUS_TRANSFER_PARSE,
|
||||
NBIO_STATUS_TRANSFER_PARSE_FREE
|
||||
NBIO_STATUS_TRANSFER_FINISHED
|
||||
};
|
||||
|
||||
enum nbio_status_flags
|
||||
|
Loading…
x
Reference in New Issue
Block a user