From 8292786363df4c86c451e2c88ebe888c7ba42f47 Mon Sep 17 00:00:00 2001 From: andymcca Date: Mon, 31 Jul 2023 15:46:12 +0100 Subject: [PATCH] Add u1 extension to supported filetypes As requested in issue #37 . Could probably lose the 'v0.91' from the build version as well and just have it report the github build. --- libretro/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro/libretro.c b/libretro/libretro.c index 1135d24..256677b 100644 --- a/libretro/libretro.c +++ b/libretro/libretro.c @@ -488,7 +488,7 @@ void retro_get_system_info(struct retro_system_info* info) info->library_version = "v0.91" GIT_VERSION; info->need_fullpath = true; info->block_extract = false; - info->valid_extensions = "gba|bin|agb|gbz" ; + info->valid_extensions = "gba|bin|agb|gbz|u1" ; }