From 49f7ce43658c3227de8808975d77921e0ceca99a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 17 Sep 2016 19:43:30 +0200 Subject: [PATCH] Prevent unused variable warning --- configuration.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.c b/configuration.c index df1221eb98..3e37daf4e1 100644 --- a/configuration.c +++ b/configuration.c @@ -2155,7 +2155,9 @@ bool config_load_override(void) const char *game_name = NULL; bool should_append = false; rarch_system_info_t *system = NULL; +#ifdef HAVE_NETPLAY global_t *global = global_get_ptr(); +#endif runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &system);