From ef9478873f2b560b8194dd08b24fda5de6371ee1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 2 Aug 2014 04:25:05 +0200 Subject: [PATCH] Add ifdef to command.h too --- command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.h b/command.h index 11079eef76..300c5c7dbe 100644 --- a/command.h +++ b/command.h @@ -36,7 +36,7 @@ void rarch_cmd_poll(rarch_cmd_t *handle); void rarch_cmd_set(rarch_cmd_t *handle, unsigned id); bool rarch_cmd_get(rarch_cmd_t *handle, unsigned id); -#ifdef HAVE_NETWORK_CMD +#if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY) bool network_cmd_send(const char *cmd); #endif