Merge pull request #3427 from frangarcj/master

(VITA) FIX mame2000
This commit is contained in:
Twinaphex 2016-08-25 14:39:05 +02:00 committed by GitHub
commit 8516297a01
2 changed files with 3 additions and 0 deletions

View File

@ -392,6 +392,8 @@ ifeq ($(DEBUG), 1)
CFLAGS += -O0 -g -DDEBUG
else ifeq ($(platform), psp1)
CFLAGS += -O2
else ifeq ($(platform), vita)
CFLAGS += -O1
else
CFLAGS += -O3
endif

View File

@ -26,6 +26,7 @@
#ifdef VITA
#include <psp2/kernel/threadmgr.h>
#include <sys/time.h>
#else
#include <pspkernel.h>
#include <pspthreadman.h>