diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-20 13:46:25 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-20 13:46:25 +0000 |
| commit | daa0422dbe12e88f05a05b3e8ec8b760948b841f (patch) | |
| tree | 77231afea15d38621a3a785b0ca1ea4406abb01f | |
| parent | 7ee1a71ccceee4ea417dc30fdb4cf4a07d46916e (diff) | |
| download | pcsxr-daa0422dbe12e88f05a05b3e8ec8b760948b841f.tar.gz | |
cdrom.c
- fix msf2sec, sec2msf (oops!)
- for cdda subq faking
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59828 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | libpcsxcore/cdrom.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 25b14b69..237afd0f 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -99,6 +99,10 @@ unsigned char Test23[] = { 0x43, 0x58, 0x44, 0x32, 0x39 ,0x34, 0x30, 0x51 }; static struct CdrStat stat; static struct SubQ *subq; +
+
+extern unsigned int msf2sec(char *msf);
+extern void sec2msf(unsigned int s, char *msf);
extern u16 *iso_play_cdbuf; |
