mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Fix BE flag logic bug in DIC (fixes #606)
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user