From 9e7a47476ef781299146a5573bc38e7694d2ed6e Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Mon, 29 Apr 2024 22:42:33 +0100 Subject: [PATCH] Improve patch recognition --- src/menu/views/file_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menu/views/file_info.c b/src/menu/views/file_info.c index f4819de8..211f5791 100644 --- a/src/menu/views/file_info.c +++ b/src/menu/views/file_info.c @@ -8,7 +8,7 @@ static const char *n64_rom_extensions[] = { "z64", "n64", "v64", "rom", NULL }; static const char *text_extensions[] = { "txt", NULL }; static const char *config_extensions[] = { "ini", "cfg", "yml", "yaml", "toml", NULL }; static const char *save_extensions[] = { "sav", "eep", "eeprom", "sra", "srm", "ram", "fla", "flashram", NULL }; -static const char *patch_extensions[] = { "ips", "aps", "pps", "xdelta", NULL }; +static const char *patch_extensions[] = { "aps", "bps", "ips", "pps", "ups", "xdelta", NULL }; static const char *archive_extensions[] = { "zip", "rar", "7z", "tar", "gz", NULL }; static const char *image_extensions[] = { "png", "jpg", "gif", NULL }; static const char *music_extensions[] = { "mp3", "wav", "ogg", "wma", "flac", NULL };