mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-12 05:40:36 +00:00
Another buildfix for MSVC
This commit is contained in:
parent
95e2b6ac51
commit
8953255b6b
@ -701,7 +701,7 @@ static void task_load_handler(retro_task_t *task)
|
||||
|
||||
remaining = MIN(state->size - state->bytes_read, SAVE_STATE_CHUNK);
|
||||
|
||||
bytes_read = filestream_read(state->file, state->data + state->bytes_read, remaining);
|
||||
bytes_read = filestream_read(state->file, (uint8_t*)state->data + state->bytes_read, remaining);
|
||||
|
||||
state->bytes_read += bytes_read;
|
||||
task->progress = (state->bytes_read / (float)state->size) * 100;
|
||||
|
Loading…
x
Reference in New Issue
Block a user