mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Forgot nodump status... oops
This commit is contained in:
@@ -243,6 +243,16 @@ namespace SabreTools
|
|||||||
List<RomData> roms = datdata.Roms[key];
|
List<RomData> roms = datdata.Roms[key];
|
||||||
foreach (RomData rom in roms)
|
foreach (RomData rom in roms)
|
||||||
{
|
{
|
||||||
|
// Filter on nodump status
|
||||||
|
if (_nodump == true && !rom.Nodump)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (_nodump == false && rom.Nodump)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Filter on game name
|
// Filter on game name
|
||||||
if (_gamename != "")
|
if (_gamename != "")
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user