Skip to content

Commit

Permalink
Dimenticato di aggiungere il supporto di NSF e UNIf nei file compressi.
Browse files Browse the repository at this point in the history
  • Loading branch information
punesemu committed Nov 28, 2017
1 parent 7006fd0 commit a36f31c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions src/core/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions src/core/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a36f31c

Please sign in to comment.