From: aliaspider Date: Thu, 2 Mar 2017 08:40:25 +0000 (+0100) Subject: fix implicit-function-declaration warnings/errors. X-Git-Tag: r24l~802 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ae7e341101d8f840d0a98e168fe055e93668487;p=pcsx_rearmed.git fix implicit-function-declaration warnings/errors. --- diff --git a/frontend/main.c b/frontend/main.c index 89e96e4a..6887dd1e 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -772,7 +772,7 @@ int emu_save_state(int slot) return ret; ret = SaveState(fname); -#ifdef HAVE_PRE_ARMV7 /* XXX GPH hack */ +#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) /* XXX GPH hack */ sync(); #endif SysPrintf("* %s \"%s\" [%d]\n", diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index c27ce4f1..afe3f3b8 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -23,6 +23,7 @@ #include "plugins.h" #include "cdriso.h" +#include "../plugins/dfinput/externals.h" static char IsoFile[MAXPATHLEN] = ""; static s64 cdOpenCaseTime = 0;