can compile

This commit is contained in:
aliaspider
2014-12-09 00:17:28 +01:00
parent 365077772d
commit 8f9b841f72
15 changed files with 228 additions and 87 deletions

View File

@@ -103,8 +103,16 @@
#include <time.h>
#include <stdio.h>
#else
#ifdef __LIBRETRO__
#define GBA_SCREEN_WIDTH (240)
#define GBA_SCREEN_HEIGHT (160)
#define GBA_SCREEN_PITCH (240)
#else
#include "SDL.h"
#endif
#ifdef ARM_ARCH
#define function_cc
@@ -210,7 +218,9 @@ typedef u32 fixed8_24;
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#ifndef __LIBRETRO__
#include "SDL.h"
#endif
#include "cpu.h"
#include "memory.h"
#include "video.h"