mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
core, libretro vfs support
This commit is contained in:
parent
ed7c6238b7
commit
73bda1add9
14 changed files with 14 additions and 42 deletions
|
@ -10,10 +10,6 @@
|
|||
#include "pico_int.h"
|
||||
#include <cpu/debug.h>
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
#if defined(USE_LIBCHDR)
|
||||
#include "libchdr/chd.h"
|
||||
#include "libchdr/cdrom.h"
|
||||
|
|
|
@ -11,10 +11,6 @@
|
|||
#include "cdd.h"
|
||||
#include "cd_parse.h"
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ >= 7
|
||||
#pragma GCC diagnostic ignored "-Wformat-truncation"
|
||||
#endif
|
||||
|
|
|
@ -13,10 +13,6 @@
|
|||
#include "cd_parse.h"
|
||||
// #define elprintf(w,f,...) printf(f "\n",##__VA_ARGS__);
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
#if defined(USE_LIBCHDR)
|
||||
#include "libchdr/chd.h"
|
||||
#include "libchdr/cdrom.h"
|
||||
|
|
|
@ -25,10 +25,6 @@
|
|||
#include "memory.h"
|
||||
#include "patch.h"
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
struct patch
|
||||
{
|
||||
unsigned int addr;
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
#endif
|
||||
#include "pico_types.h"
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && defined(__i386__)
|
||||
#define REGPARM(x) __attribute__((regparm(x)))
|
||||
#else
|
||||
|
|
|
@ -10,10 +10,6 @@
|
|||
#include "pico_int.h"
|
||||
#include "memory.h"
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
/* context */
|
||||
// Cyclone 68000
|
||||
#ifdef EMU_C68K
|
||||
|
|
|
@ -14,10 +14,6 @@
|
|||
#include "sound/emu2413/emu2413.h"
|
||||
#include "state.h"
|
||||
|
||||
#ifdef USE_LIBRETRO_VFS
|
||||
#include "file_stream_transforms.h"
|
||||
#endif
|
||||
|
||||
// sn76496 & ym2413
|
||||
extern int *sn76496_regs;
|
||||
extern OPLL old_opll;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue