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