summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/id3.h1
-rw-r--r--firmware/id3.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h
index 5cc600face..791f86390e 100644
--- a/firmware/export/id3.h
+++ b/firmware/export/id3.h
@@ -53,6 +53,7 @@ enum
53 AFMT_NSF, /* NESM (NES Sound Format) */ 53 AFMT_NSF, /* NESM (NES Sound Format) */
54 AFMT_SPEEX, /* Ogg Speex speech */ 54 AFMT_SPEEX, /* Ogg Speex speech */
55 AFMT_SPC, /* SPC700 save state */ 55 AFMT_SPC, /* SPC700 save state */
56 AFMT_APE, /* Monkey's Audio (APE) */
56#endif 57#endif
57 58
58 /* add new formats at any index above this line to have a sensible order - 59 /* add new formats at any index above this line to have a sensible order -
diff --git a/firmware/id3.c b/firmware/id3.c
index eaaf2a9ecd..3e7b392554 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -107,6 +107,9 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] =
107 /* SPC700 Save State */ 107 /* SPC700 Save State */
108 [AFMT_SPC] = 108 [AFMT_SPC] =
109 AFMT_ENTRY("SPC", "spc", NULL, "spc\0" ), 109 AFMT_ENTRY("SPC", "spc", NULL, "spc\0" ),
110 /* APE (Monkey's Audio) */
111 [AFMT_APE] =
112 AFMT_ENTRY("APE", "ape", NULL, "ape\0mac\0" ),
110#endif 113#endif
111}; 114};
112 115