mirror of https://github.com/snes9xgit/snes9x
commit
83ebd9d9d9
|
|
@ -12,6 +12,7 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#include "snes9x.h"
|
||||
#ifdef UNZIP_SUPPORT
|
||||
# ifdef SYSTEM_ZIP
|
||||
# include <minizip/unzip.h>
|
||||
|
|
@ -19,7 +20,6 @@
|
|||
# include "unzip/unzip.h"
|
||||
# endif
|
||||
#endif
|
||||
#include "snes9x.h"
|
||||
|
||||
#ifndef MAX
|
||||
# define MAX(a,b) ((a) > (b)? (a) : (b))
|
||||
|
|
|
|||
|
|
@ -8,12 +8,12 @@
|
|||
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include "snes9x.h"
|
||||
#ifdef SYSTEM_ZIP
|
||||
#include <minizip/unzip.h>
|
||||
#else
|
||||
#include "unzip/unzip.h"
|
||||
#endif
|
||||
#include "snes9x.h"
|
||||
#include "memmap.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
#include <numeric>
|
||||
#include <assert.h>
|
||||
|
||||
#include "snes9x.h"
|
||||
#ifdef UNZIP_SUPPORT
|
||||
# ifdef SYSTEM_ZIP
|
||||
# include <minizip/unzip.h>
|
||||
|
|
@ -25,7 +26,6 @@
|
|||
#include <ctype.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "snes9x.h"
|
||||
#include "memmap.h"
|
||||
#include "apu/apu.h"
|
||||
#include "fxemu.h"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
// Abstract the details of reading from zip files versus FILE *'s.
|
||||
|
||||
#include <string>
|
||||
#include "snes9x.h"
|
||||
#ifdef UNZIP_SUPPORT
|
||||
# ifdef SYSTEM_ZIP
|
||||
# include <minizip/unzip.h>
|
||||
|
|
@ -14,7 +15,6 @@
|
|||
# include "unzip.h"
|
||||
# endif
|
||||
#endif
|
||||
#include "snes9x.h"
|
||||
#include "stream.h"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue