Skip to content

Commit

Permalink
Add more NDS extensions
Browse files Browse the repository at this point in the history
srl -> "official" DS rom extension (generally found in prototypes etc)
dsi -> used for DSi only games
ids -> used for iQue DS games

upstream handles all these rom extensions already
  • Loading branch information
CasualPokePlayer committed Oct 19, 2024
1 parent d3f4c1f commit 2ddfc5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BizHawk.Client.Common/RomLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ private static class RomFileExtensions

public static readonly IReadOnlyCollection<string> N64DD = new[] { "ndd" };

public static readonly IReadOnlyCollection<string> NDS = new[] { "nds" };
public static readonly IReadOnlyCollection<string> NDS = new[] { "nds", "srl", "dsi", "ids" };

public static readonly IReadOnlyCollection<string> NES = new[] { "nes", "fds", "unf" };

Expand Down

0 comments on commit 2ddfc5f

Please sign in to comment.