disc-fix little postgap bug

This commit is contained in:
zeromus 2011-08-09 02:33:03 +00:00
parent 63b1f9b93a
commit 71d3774ace
1 changed files with 1 additions and 1 deletions

View File

@ -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;