aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend/main.c2
-rw-r--r--libpcsxcore/plugins.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 89e96e4..6887dd1 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 c27ce4f..afe3f3b 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;