Skip to content

Commit

Permalink
Allow more file extensions in CD and Hardfile selection
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Jan 14, 2021
1 parent 6bf4a64 commit 60dd944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/osdep/gui/EditFilesysHardfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define DIALOG_WIDTH 620
#define DIALOG_HEIGHT 280

static const char *harddisk_filter[] = {".hdf", ".lha", "zip", "\0"};
static const char *harddisk_filter[] = {".hdf", ".hdz", ".lha", "zip", "\0"};

struct controller_map
{
Expand Down
2 changes: 1 addition & 1 deletion src/osdep/gui/PanelHD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static const int COLUMN_SIZE[] =
40 // Bootpri
};

static const char* cdfile_filter[] = {".cue", ".ccd", ".iso", "\0"};
static const char* cdfile_filter[] = {".cue", ".ccd", ".iso", ".mds", ".nrg", "\0"};
static void AdjustDropDownControls();
static bool bIgnoreListChange = false;

Expand Down

0 comments on commit 60dd944

Please # to comment.