| 364 | } |
| 365 | |
| 366 | static s32 ISOreadTrack(u32 lsn, int mode) |
| 367 | { |
| 368 | int _lsn = lsn; |
| 369 | |
| 370 | if (_lsn < 0) |
| 371 | lsn = iso.GetBlockCount() + _lsn; |
| 372 | |
| 373 | iso.BeginRead2(lsn); |
| 374 | |
| 375 | pmode = mode; |
| 376 | |
| 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | static s32 ISOgetBuffer(u8* buffer) |
| 381 | { |
nothing calls this directly
no test coverage detected