diff --git a/src/core/uncompress.h b/src/core/uncompress.h index e4bf5166b..b4469414e 100644 --- a/src/core/uncompress.h +++ b/src/core/uncompress.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 { diff --git a/src/core/version.h b/src/core/version.h index 9aa37fd77..eb7d0f490 100644 --- a/src/core/version.h +++ b/src/core/version.h @@ -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