(Android) Buildfix

This commit is contained in:
twinaphex
2015-09-09 06:31:38 +02:00
parent caa837db1c
commit e8d9b0b09a
7 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ SOURCES_C += $(CORE_DIR)/drivers/libretro/griffin.c
else
SOURCES_C += \
$(CORE_DIR)/drivers/libretro/libretro.c \
$(CORE_DIR)/drivers/libretro/memstream.c \
$(CORE_DIR)/memstream.c \
$(CORE_DIR)/cart.c \
$(CORE_DIR)/cheat.c \
$(CORE_DIR)/crc32.c \

View File

@@ -1,7 +1,7 @@
#ifdef WANT_GRIFFIN
#include "drivers/libretro/libretro.c"
#include "drivers/libretro/memstream.c"
#include "../../memstream.c"
#include "cart.c"
#include "cheat.c"

View File

@@ -23,7 +23,7 @@
#include "../../fds.h"
#include <string.h>
#include "memstream.h"
#include "../../memstream.h"
#if defined(_3DS)
void* linearMemAlign(size_t size, size_t alignment);

View File

@@ -2,7 +2,7 @@
#define _FCEU_ENDIAN_H
#include "fceu-memory.h"
#include <memstream.h>
#include "memstream.h"
int write32le_mem(uint32 b, memstream_t *mem);
int read32le_mem(uint32 *Bufo, memstream_t *mem);

View File

@@ -30,7 +30,7 @@
#define FCEU_dwmemset(d, c, n) { int _x; for (_x = n - 4; _x >= 0; _x -= 4) *(uint32*)& (d)[_x] = c; }
#if defined(STATE_LIBRETRO) || defined(ENDIAN_LIBRETRO) || defined(GENERAL_LIBRETRO)
#include "drivers/libretro/memstream.h"
#include "memstream.h"
#define HAVE_MEMSTREAM
#define MEM_TYPE memstream_t