From 191c7b080e9c704183b91d321523dd2b04a4f34a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 18 Apr 2021 10:42:09 -0700 Subject: [PATCH] Add offset for all HVN discs --- MPF.Library/DiscImageCreator/Parameters.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/MPF.Library/DiscImageCreator/Parameters.cs b/MPF.Library/DiscImageCreator/Parameters.cs index a7e77990..7175ef0a 100644 --- a/MPF.Library/DiscImageCreator/Parameters.cs +++ b/MPF.Library/DiscImageCreator/Parameters.cs @@ -1432,15 +1432,11 @@ namespace MPF.DiscImageCreator this[Flag.AtariJaguar] = true; break; case KnownSystem.HasbroVideoNow: - case KnownSystem.HasbroVideoNowJr: - //this[Flag.VideoNow] = true; - //this.VideoNowValue = 18032; - break; case KnownSystem.HasbroVideoNowColor: - //this[Flag.VideoNowColor] = true; - break; + case KnownSystem.HasbroVideoNowJr: case KnownSystem.HasbroVideoNowXP: - //this[Flag.VideoNowXP] = true; + this[Flag.AddOffset] = true; + this.AddOffsetValue = 18032; break; case KnownSystem.SonyPlayStation: this[Flag.ScanAntiMod] = true; @@ -2335,6 +2331,10 @@ namespace MPF.DiscImageCreator var commands = new List(); switch (flag) { + case Flag.AddOffset: + commands.Add(Command.CompactDisc); + commands.Add(Command.Swap); + break; case Flag.AMSF: commands.Add(Command.CompactDisc); break;