From 58bb34e3ccd630e129d3f7e58dcc79290e7caa4f Mon Sep 17 00:00:00 2001 From: Simon Gellis Date: Sat, 6 Sep 2025 10:22:17 -0400 Subject: [PATCH] Add elf/isx to file picker --- src/window/game.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/window/game.rs b/src/window/game.rs index 3dc9dda..76407c5 100644 --- a/src/window/game.rs +++ b/src/window/game.rs @@ -88,6 +88,7 @@ impl GameWindow { Command::OpenRom => { let rom = rfd::FileDialog::new() .add_filter("Virtual Boy ROMs", &["vb", "vbrom"]) + .add_filter("Executable files", &["", "elf", "isx"]) .pick_file(); if let Some(path) = rom { self.client @@ -140,6 +141,7 @@ impl GameWindow { { let rom = rfd::FileDialog::new() .add_filter("Virtual Boy ROMs", &["vb", "vbrom"]) + .add_filter("Executable files", &["", "elf", "isx"]) .pick_file(); if let Some(path) = rom { self.client