Skip to content

Commit

Permalink
Ignore more known filename suffixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezbios authored Aug 7, 2024
1 parent 3544386 commit 759cb49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ZuluSCSI_disk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,13 +442,14 @@ bool scsiDiskFilenameValid(const char* name)
if (extension)
{
const char *ignore_exts[] = {
".rom_loaded", ".cue", ".txt", ".rtf", ".md", ".nfo", ".pdf", ".doc", ".ini",
".rom_loaded", ".cue", ".txt", ".rtf", ".md", ".nfo", ".pdf", ".doc",
".ini", ".mid", ".midi", ".aiff", ".mp3", ".m4a",
NULL
};
const char *archive_exts[] = {
".tar", ".tgz", ".gz", ".bz2", ".tbz2", ".xz", ".zst", ".z",
".zip", ".zipx", ".rar", ".lzh", ".lha", ".lzo", ".lz4", ".arj",
".dmg", ".hqx", ".cpt", ".7z", ".s7z",
".dmg", ".hqx", ".cpt", ".7z", ".s7z", ".mid", ".wav", ".aiff",
NULL
};

Expand Down

0 comments on commit 759cb49

Please sign in to comment.