@@ -217,6 +217,7 @@ function main() {
217
217
{ ext: ["lvl"], type: "format", name: "Level File", bin: true },
218
218
{ ext: ["stb"], type: "format", name: "STB (OGG)", bin: true },
219
219
{ ext: ["adbx"], type: "format", name: "AdibouX", bin: true },
220
+ { ext: ["sav"], type: "format", name: "Save", bin: true },
220
221
// XPAT formats:
221
222
{ ext: ["xcs"], type: "format", name: "XPAT Compiled Script", bin: true },
222
223
// Generic formats:
@@ -235,6 +236,13 @@ function main() {
235
236
{ ext: ["pup"], type: "format", name: "Playstation Update Package", bin: true },
236
237
{ ext: ["mps"], type: "format", name: "Mathematical Programming System", bin: true },
237
238
{ ext: ["gzf"], type: "format", name: "Ghidra Zip File", bin: true },
239
+ { ext: ["cue"], type: "format", name: "CUE sheet", bin: false },
240
+ { ext: ["cat"], type: "format", name: "Windows Cabinet File", bin: true },
241
+ { ext: ["sdb"], type: "format", name: "Shim Database", bin: true },
242
+ { ext: ["mof"], type: "format", name: "Managed Object Format", bin: false },
243
+ { ext: ["nls"], type: "format", name: "National Language Support", bin: true },
244
+ { ext: ["sse"], type: "format", name: "Streaming SIMD Extensions", bin: true },
245
+ { ext: ["res"], type: "format", name: "Resource file", bin: true },
238
246
// ScummVM formats:
239
247
{ ext: ["gob"], type: "format", name: "Config file (extract_gob_stk)", bin: false },
240
248
// Director formats:
@@ -244,6 +252,8 @@ function main() {
244
252
{ ext: ["cct"], type: "format", name: "Published Shockwave Cast", bin: true },
245
253
// 3DS formats:
246
254
{ ext: ["cia"], type: "format", name: "CTR Importable Archive", bin: true },
255
+ // Amiga formats:
256
+ { ext: ["adf"], type: "format", name: "Amiga Disk File", bin: true },
247
257
];
248
258
249
259
for (var i = 0; i < extensionsDb.length; i++) {
0 commit comments