Fix screwup in romloader xmlgame handling

This may have only affected Saturn in practice.  Whoops!  Fixes #2557.
This commit is contained in:
nattthebear 2021-01-09 11:45:16 -05:00
parent 9ed56cdc6e
commit 75a655fdd8
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ namespace BizHawk.Client.Common
Comm = nextComm,
Game = game,
Roms = xmlGame.Assets
.Where(kvp => !Disc.IsValidExtension(kvp.Key))
.Where(kvp => !Disc.IsValidExtension(Path.GetExtension(kvp.Key)))
.Select(kvp => (IRomAsset)new RomAsset
{
RomData = kvp.Value,