From 3fa600370bb7b98c148120244c15f71104fa7800 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Tue, 19 Jan 2021 08:52:58 -0500 Subject: [PATCH] allow hard drive images with extension "hdv" --- bios.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bios.cpp b/bios.cpp index 84735be..e3a091e 100644 --- a/bios.cpp +++ b/bios.cpp @@ -496,7 +496,7 @@ uint16_t BIOS::DisksMenuHandler(bool needsRedraw, bool performAction) localRedraw = true; break; } else { - strcpy(fileFilter, "img"); + strcpy(fileFilter, "img,hdv"); fileSelectionFor = ACT_HD1; return BIOS_SELECTFILE; }