disc-fix little postgap bug
This commit is contained in:
parent
63b1f9b93a
commit
71d3774ace
|
@ -533,7 +533,7 @@ namespace BizHawk.DiscSystem
|
||||||
track_has_pregap = true;
|
track_has_pregap = true;
|
||||||
break;
|
break;
|
||||||
case "POSTGAP":
|
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;
|
track_has_postgap = true;
|
||||||
currTrack.PostGap = new CueTimestamp(clp.ReadToken());
|
currTrack.PostGap = new CueTimestamp(clp.ReadToken());
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue