mirror of
https://github.com/libretro/RetroArch
synced 2025-04-15 14:42:27 +00:00
Silence these MSVC warnings - warning C4047: '=' : 'unsigned char' differs in levels of indirection from 'char *'
This commit is contained in:
parent
e75e2ede92
commit
dd6cbce0eb
@ -441,7 +441,7 @@ void gfx_widgets_msg_queue_push(
|
||||
msg_widget->msg_new = strdup(title);
|
||||
msg_widget->msg_len = (unsigned)strlen(title);
|
||||
|
||||
msg_widget->task_error = task->error;
|
||||
msg_widget->task_error = !string_is_empty(task->error);
|
||||
msg_widget->task_cancelled = task->cancelled;
|
||||
msg_widget->task_finished = task->finished;
|
||||
msg_widget->task_progress = task->progress;
|
||||
@ -551,7 +551,7 @@ void gfx_widgets_msg_queue_push(
|
||||
msg_widget->width = new_width;
|
||||
}
|
||||
|
||||
msg_widget->task_error = task->error;
|
||||
msg_widget->task_error = !string_is_empty(task->error);
|
||||
msg_widget->task_cancelled = task->cancelled;
|
||||
msg_widget->task_finished = task->finished;
|
||||
msg_widget->task_progress = task->progress;
|
||||
|
Loading…
x
Reference in New Issue
Block a user