diff options
| author | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-14 08:20:51 +0000 |
|---|---|---|
| committer | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-14 08:20:51 +0000 |
| commit | 830a16adf3b87c887ce43143b7f45fd8d970e608 (patch) | |
| tree | fc58ab59671a7a98a1f28c2e30781626b729897f /libpcsxcore/cdrom.c | |
| parent | bccb9c573355bcecfc03115d1f07776af993b7e3 (diff) | |
| download | pcsxr-830a16adf3b87c887ce43143b7f45fd8d970e608.tar.gz | |
BIAS was moved into rec/int.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@48024 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/cdrom.c')
| -rw-r--r-- | libpcsxcore/cdrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 75d1b5a1..db449103 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -85,8 +85,8 @@ unsigned char Test23[] = { 0x43, 0x58, 0x44, 0x32, 0x39 ,0x34, 0x30, 0x51 }; // 1x = 75 sectors per second // PSXCLK = 1 sec in the ps -// so (PSXCLK / 75) / BIAS = cdr read time (linuzappz) -#define cdReadTime ((PSXCLK / 75) / BIAS) +// so (PSXCLK / 75) = cdr read time (linuzappz) +#define cdReadTime (PSXCLK / 75) static struct CdrStat stat; static struct SubQ *subq; |
