Skip to content

Commit

Permalink
fix a crash due to forgotten function
Browse files Browse the repository at this point in the history
  • Loading branch information
notaz committed Mar 21, 2024
1 parent ae9f50a commit 36f2c1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libpcsxcore/cdriso.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ long CALLBACK CDR__configure(void);
long CALLBACK CDR__test(void);
void CALLBACK CDR__about(void);
long CALLBACK CDR__setfilename(char *filename);
long CALLBACK CDR__prefetch(u8 m, u8 s, u8 f);

static void DecodeRawSubData(void);

Expand Down Expand Up @@ -2006,6 +2007,7 @@ void cdrIsoInit(void) {
CDR_test = CDR__test;
CDR_about = CDR__about;
CDR_setfilename = CDR__setfilename;
CDR_prefetch = CDR__prefetch;

numtracks = 0;
}
Expand Down

0 comments on commit 36f2c1f

Please sign in to comment.