mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
(runloop_data.c) Prevent warning
This commit is contained in:
parent
f278c1f577
commit
f6a3809d7f
@ -111,8 +111,9 @@ static void data_runloop_iterate(bool is_thread, data_runloop_t *runloop)
|
|||||||
static bool rarch_main_data_active(data_runloop_t *runloop)
|
static bool rarch_main_data_active(data_runloop_t *runloop)
|
||||||
{
|
{
|
||||||
bool image_active, nbio_active, http_active,
|
bool image_active, nbio_active, http_active,
|
||||||
http_conn_active, overlay_active, db_active;
|
http_conn_active, overlay_active;
|
||||||
bool active = false;
|
bool active = false;
|
||||||
|
bool db_active = false;
|
||||||
|
|
||||||
driver_t *driver = driver_get_ptr();
|
driver_t *driver = driver_get_ptr();
|
||||||
nbio_handle_t *nbio = runloop ? &runloop->nbio : NULL;
|
nbio_handle_t *nbio = runloop ? &runloop->nbio : NULL;
|
||||||
@ -157,6 +158,7 @@ static bool rarch_main_data_active(data_runloop_t *runloop)
|
|||||||
(void)http_active;
|
(void)http_active;
|
||||||
(void)http_conn_active;
|
(void)http_conn_active;
|
||||||
(void)overlay_active;
|
(void)overlay_active;
|
||||||
|
(void)db_active;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
RARCH_LOG("runloop nbio : %d, image: %d, http: %d, http conn: %d, overlay: %d\n", nbio_active, image_active,
|
RARCH_LOG("runloop nbio : %d, image: %d, http: %d, http conn: %d, overlay: %d\n", nbio_active, image_active,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user