From d6072b5044217b54a9671e32a137a09c52670aa4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 15 Mar 2015 06:30:37 +0100 Subject: [PATCH] Change runloop structs --- runloop.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runloop.h b/runloop.h index f3a7988b33..4a0ba03228 100644 --- a/runloop.h +++ b/runloop.h @@ -85,7 +85,7 @@ typedef struct http_handle /* All data runloop-related globals go here. */ -struct data_runloop +typedef struct data_runloop { #ifdef HAVE_NETWORKING http_handle_t http; @@ -98,11 +98,11 @@ struct data_runloop #endif nbio_handle_t nbio; -}; +} data_runloop_t; /* All libretro runloop-related globals go here. */ -struct runloop +typedef struct runloop { /* Lifecycle state checks. */ bool is_paused; @@ -160,7 +160,7 @@ struct runloop } measure_data; msg_queue_t *msg_queue; -}; +} runloop_t; /* Public data structures. */ extern struct data_runloop g_data_runloop;