From: kub Date: Sun, 23 Mar 2025 08:20:01 +0000 (+0100) Subject: mcd, fix iso/bin file offset after state load X-Git-Tag: v2.04~17 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f56ffef0b1bca9b48b91c9d8e43f8b7cd8a67352;p=picodrive.git mcd, fix iso/bin file offset after state load --- diff --git a/pico/cd/cdd.c b/pico/cd/cdd.c index 0030b16c..dcb3be4a 100644 --- a/pico/cd/cdd.c +++ b/pico/cd/cdd.c @@ -153,6 +153,8 @@ static void ogg_free(int i) #endif #endif +static off_t read_pos = -1; + void cdd_reset(void) { /* stop audio streaming */ @@ -178,6 +180,9 @@ void cdd_reset(void) /* clear CD-DA output */ cdd.audio[0] = cdd.audio[1] = 0; + + /* reset file read position */ + read_pos = -1; } /* FIXME: use cdd_read_audio() instead */ @@ -203,8 +208,6 @@ void cdd_play_audio(int index, int lba) cdda_start_play(base, lba_offset, lb_len); } -static off_t read_pos = -1; - void cdd_seek(int index, int lba) { int aindex = (index < 0 ? -index : index);