(runloop_data.c) Add DATA_TYPE_OVERLAY

This commit is contained in:
twinaphex 2015-03-15 07:07:59 +01:00
parent 31da3a5075
commit 4729da05bd
2 changed files with 7 additions and 0 deletions

View File

@ -43,6 +43,9 @@ enum runloop_data_type
DATA_TYPE_FILE, DATA_TYPE_FILE,
DATA_TYPE_IMAGE, DATA_TYPE_IMAGE,
DATA_TYPE_HTTP, DATA_TYPE_HTTP,
#ifdef HAVE_OVERLAY
DATA_TYPE_OVERLAY,
#endif
}; };
typedef struct nbio_image_handle typedef struct nbio_image_handle

View File

@ -684,6 +684,10 @@ void rarch_main_data_msg_queue_push(unsigned type,
case DATA_TYPE_HTTP: case DATA_TYPE_HTTP:
queue = g_data_runloop.http.msg_queue; queue = g_data_runloop.http.msg_queue;
break; break;
#ifdef HAVE_OVERLAY
case DATA_TYPE_OVERLAY:
break;
#endif
} }
if (!queue) if (!queue)