From 6e5b7c3a7bc39e9e3690928bfd9bbe76480dd4ad Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 6 Feb 2017 05:51:28 +0100 Subject: [PATCH] Fix relative includes --- cheevos/cheevos.c | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/cheevos/cheevos.c b/cheevos/cheevos.c index d7eb8c5e4e..54feeda363 100644 --- a/cheevos/cheevos.c +++ b/cheevos/cheevos.c @@ -27,22 +27,24 @@ #endif #ifdef HAVE_MENU -#include "menu/menu_driver.h" -#include "menu/menu_entries.h" +#include "../menu/menu_driver.h" +#include "../menu/menu_entries.h" #endif #include "cheevos.h" -#include "command.h" -#include "dynamic.h" -#include "network/net_http_special.h" -#include "tasks/tasks_internal.h" -#include "configuration.h" -#include "performance_counters.h" -#include "msg_hash.h" -#include "runloop.h" -#include "core.h" -#include "verbosity.h" +#include "../command.h" +#include "../dynamic.h" +#include "../configuration.h" +#include "../performance_counters.h" +#include "../msg_hash.h" +#include "../runloop.h" +#include "../core.h" + +#include "../network/net_http_special.h" +#include "../tasks/tasks_internal.h" + +#include "../verbosity.h" /* Define this macro to prevent cheevos from being deactivated. */ #undef CHEEVOS_DONT_DEACTIVATE