From 71d3774aced9b30c2bf80c1ad4addffdfc9217e2 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 9 Aug 2011 02:33:03 +0000 Subject: [PATCH] disc-fix little postgap bug --- BizHawk.Emulation/DiscSystem/CUE_format.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation/DiscSystem/CUE_format.cs b/BizHawk.Emulation/DiscSystem/CUE_format.cs index 0808f03197..b41cbdd764 100644 --- a/BizHawk.Emulation/DiscSystem/CUE_format.cs +++ b/BizHawk.Emulation/DiscSystem/CUE_format.cs @@ -533,7 +533,7 @@ namespace BizHawk.DiscSystem track_has_pregap = true; break; case "POSTGAP": - if (track_has_pregap) throw new CueBrokenException("`Only one POSTGAP command is allowed per track.`"); + if (track_has_postgap) throw new CueBrokenException("`Only one POSTGAP command is allowed per track.`"); track_has_postgap = true; currTrack.PostGap = new CueTimestamp(clp.ReadToken()); break;