Skip to content
Permalink
Browse files
Dimenticato di aggiungere il supporto di NSF e UNIf nei file compressi.
  • Loading branch information
punesemu committed Nov 28, 2017
1 parent 7006fd0 commit a36f31c33e6cea28953acc45648ec6c5658ac8e8
Showing with 10 additions and 5 deletions.
  1. +8 −3 src/core/uncompress.h
  2. +2 −2 src/core/version.h
@@ -24,7 +24,9 @@
enum uncomp_formats {
FMT_NES,
FMT_FDS,
FMT_FM2
FMT_FM2,
FMT_UNIF,
FMT_NSF
};
enum uncomp_misc {
UNCOMP_CTRL_FILE_COUNT_ROMS,
@@ -49,8 +51,11 @@ typedef struct _uncomp_file_data {

static const _format_supported format_supported[] = {
{ uL(".nes"), FMT_NES },
{ uL(".fds"), FMT_FDS }
//{ uL(".fm2"), FMT_FM2 }
{ uL(".fds"), FMT_FDS },
//{ uL(".fm2"), FMT_FM2 },
{ uL(".unf"), FMT_UNIF },
{ uL(".unif"), FMT_UNIF },
{ uL(".nsf"), FMT_NSF }
};

EXTERNC struct _uncomp {
@@ -24,8 +24,8 @@
#define VER1 "0"
#define VER1_INT 0

#define VER2 "101"
#define VER2_INT 101
#define VER2 "102"
#define VER2_INT 102

#if defined (RELEASE)
#define VERSION VER1 "." VER2

0 comments on commit a36f31c

Please sign in to comment.