aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--libretro.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e905814..42afa79 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
DEBUG = 0
PERF_TEST = 1
-HAVE_GRIFFIN = 0
+HAVE_GRIFFIN = 1
LOAD_FROM_MEMORY_TEST = 0
ifeq ($(platform),)
diff --git a/libretro.c b/libretro.c
index 2257bc5..3b56a30 100644
--- a/libretro.c
+++ b/libretro.c
@@ -360,9 +360,11 @@ uint32 S9xReadJoypad(int port)
return joypad;
}
+#ifdef PSP
+#define FRAMESKIP
+#endif
-//#define FRAMESKIP
-//#define NO_VIDEO_OUTPUT
+#define NO_VIDEO_OUTPUT
static float samples_to_play = 0.0;
void retro_run(void)
{