mirror of
https://github.com/libretro/RetroArch
synced 2025-02-28 12:40:23 +00:00
Get rid of is_thread variable for this function
This commit is contained in:
parent
dd0a191548
commit
82f64cbf43
@ -234,7 +234,7 @@ void rarch_main_data_iterate(void)
|
||||
|
||||
#ifdef HAVE_RPNG
|
||||
#ifdef HAVE_MENU
|
||||
rarch_main_data_nbio_image_upload_iterate(false);
|
||||
rarch_main_data_nbio_image_upload_iterate();
|
||||
#endif
|
||||
#endif
|
||||
#ifdef HAVE_OVERLAY
|
||||
|
@ -353,7 +353,7 @@ void rarch_main_data_nbio_image_iterate(bool is_thread)
|
||||
}
|
||||
}
|
||||
|
||||
void rarch_main_data_nbio_image_upload_iterate(bool is_thread)
|
||||
void rarch_main_data_nbio_image_upload_iterate(void)
|
||||
{
|
||||
nbio_handle_t *nbio = (nbio_handle_t*)nbio_ptr;
|
||||
nbio_image_handle_t *image = nbio ? &nbio->image : NULL;
|
||||
@ -361,8 +361,6 @@ void rarch_main_data_nbio_image_upload_iterate(bool is_thread)
|
||||
if (!image || !nbio)
|
||||
return;
|
||||
|
||||
(void)is_thread;
|
||||
|
||||
switch (image->status)
|
||||
{
|
||||
case NBIO_IMAGE_STATUS_PROCESS_TRANSFER_PARSE:
|
||||
|
@ -69,7 +69,7 @@ void rarch_main_data_http_init(void);
|
||||
|
||||
#ifdef HAVE_RPNG
|
||||
void rarch_main_data_nbio_image_iterate(bool is_thread);
|
||||
void rarch_main_data_nbio_image_upload_iterate(bool is_thread);
|
||||
void rarch_main_data_nbio_image_upload_iterate(void);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBRETRODB
|
||||
|
Loading…
x
Reference in New Issue
Block a user