Fix BE flag logic bug in DIC (fixes #606)

This commit is contained in:
Matt Nadareski
2023-11-14 21:27:09 -05:00
parent 25740c2936
commit 4a1e953ffd
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
- Add Bandai Pippin detection
- Zip manufacturer files for Redumper
- Fix BE flag logic bug in DIC
### 3.0.0 (2023-11-14)

View File

@@ -1016,7 +1016,7 @@ namespace MPF.Core.Modules.DiscImageCreator
// BE Opcode
if (IsFlagSupported(FlagStrings.BEOpcode))
{
if (this[FlagStrings.BEOpcode] == true && this[FlagStrings.D8Opcode] == false)
if (this[FlagStrings.BEOpcode] == true && this[FlagStrings.D8Opcode] != true)
{
parameters.Add(FlagStrings.BEOpcode);
if (BEOpcodeValue != null