"pretty sure stock furnace wont have xm ever"

This commit is contained in:
tildearrow 2024-06-20 21:41:57 -05:00
parent 89ae5e5381
commit e1772642b8
3 changed files with 4 additions and 0 deletions

View file

@ -587,6 +587,8 @@ class DivEngine {
bool loadFur(unsigned char* file, size_t len, int variantID=0); bool loadFur(unsigned char* file, size_t len, int variantID=0);
bool loadMod(unsigned char* file, size_t len); bool loadMod(unsigned char* file, size_t len);
bool loadS3M(unsigned char* file, size_t len); bool loadS3M(unsigned char* file, size_t len);
bool loadXM(unsigned char* file, size_t len);
bool loadIT(unsigned char* file, size_t len);
bool loadFTM(unsigned char* file, size_t len, bool dnft, bool dnftSig, bool eft); bool loadFTM(unsigned char* file, size_t len, bool dnft, bool dnftSig, bool eft);
bool loadFC(unsigned char* file, size_t len); bool loadFC(unsigned char* file, size_t len);
bool loadTFMv1(unsigned char* file, size_t len); bool loadTFMv1(unsigned char* file, size_t len);

View file

@ -53,6 +53,8 @@ struct NotZlibException {
#define DIV_FC13_MAGIC "SMOD" #define DIV_FC13_MAGIC "SMOD"
#define DIV_FC14_MAGIC "FC14" #define DIV_FC14_MAGIC "FC14"
#define DIV_S3M_MAGIC "SCRM" #define DIV_S3M_MAGIC "SCRM"
#define DIV_XM_MAGIC "Extended Module:"
#define DIV_IT_MAGIC "IMPM"
#define DIV_TFM_MAGIC "TFMfmtV2" #define DIV_TFM_MAGIC "TFMfmtV2"
#define DIV_FUR_MAGIC_DS0 "Furnace-B module" #define DIV_FUR_MAGIC_DS0 "Furnace-B module"