From 1f3068fe770657d4214a66609920486ac1b335b2 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 11 May 2023 02:57:14 -0700 Subject: [PATCH] fix synthesizing disc tracks with multisession discs when the first session has a large amount of tracks FirstRecordedTrackNumber only works here for the first session, for future sessions it doesn't work and may just result in out of range exception --- .../Internal/Jobs/Synthesize_DiscTracks_From_DiscTOC_Job.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTracks_From_DiscTOC_Job.cs b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTracks_From_DiscTOC_Job.cs index 0049923b2e..ed208d143c 100644 --- a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTracks_From_DiscTOC_Job.cs +++ b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_DiscTracks_From_DiscTOC_Job.cs @@ -75,8 +75,8 @@ namespace BizHawk.Emulation.DiscSystem //fix lead-in track type //guesses: - Tracks[0].Control = Tracks[TOCRaw.FirstRecordedTrackNumber].Control; - Tracks[0].Mode = Tracks[TOCRaw.FirstRecordedTrackNumber].Mode; + Tracks[0].Control = Tracks[1].Control; + Tracks[0].Mode = Tracks[1].Mode; } } } \ No newline at end of file