mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 15:40:44 +00:00
(runloop_data.c) Add DATA_TYPE_OVERLAY
This commit is contained in:
parent
31da3a5075
commit
4729da05bd
@ -43,6 +43,9 @@ enum runloop_data_type
|
||||
DATA_TYPE_FILE,
|
||||
DATA_TYPE_IMAGE,
|
||||
DATA_TYPE_HTTP,
|
||||
#ifdef HAVE_OVERLAY
|
||||
DATA_TYPE_OVERLAY,
|
||||
#endif
|
||||
};
|
||||
|
||||
typedef struct nbio_image_handle
|
||||
|
@ -684,6 +684,10 @@ void rarch_main_data_msg_queue_push(unsigned type,
|
||||
case DATA_TYPE_HTTP:
|
||||
queue = g_data_runloop.http.msg_queue;
|
||||
break;
|
||||
#ifdef HAVE_OVERLAY
|
||||
case DATA_TYPE_OVERLAY:
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (!queue)
|
||||
|
Loading…
x
Reference in New Issue
Block a user