From d7f12ae36e8dfe69271634b8c61a76a5f9e03653 Mon Sep 17 00:00:00 2001 From: Valerio Date: Sat, 13 Sep 2025 12:41:45 +0200 Subject: [PATCH] fix img and iso masks --- src/unix/unix_osd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unix/unix_osd.c b/src/unix/unix_osd.c index 34fe5f09f..e64d890b5 100644 --- a/src/unix/unix_osd.c +++ b/src/unix/unix_osd.c @@ -331,13 +331,13 @@ int osd_handle(SDL_Event event) switch (selected) { case 0 : // "fddload - Load floppy disk image", - file_count = load_iso_files(files, 100, "*.img"); + file_count = load_iso_files(files, 100, ".img"); file_selected = 0; scroll_offset = 0; state = STATE_FILESELECT_FLOPPY; break; case 1 : // "cdload - Load CD-ROM image", - file_count = load_iso_files(files, 100, "*.iso"); + file_count = load_iso_files(files, 100, ".iso"); file_selected = 0; scroll_offset = 0; state = STATE_FILESELECT_CD;