diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-20 13:50:20 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-20 13:50:20 +0000 |
| commit | 1f5f766b16212ef81e41361a08aa34e762748669 (patch) | |
| tree | bdb602ec5215d4ca366d4938229003f7d1bec93f | |
| parent | daa0422dbe12e88f05a05b3e8ec8b760948b841f (diff) | |
| download | pcsxr-1f5f766b16212ef81e41361a08aa34e762748669.tar.gz | |
cdriso.c
- one more commit (static function)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59830 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | libpcsxcore/cdriso.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index 867e371f..301eb267 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -76,11 +76,11 @@ static int numtracks = 0; static struct trackinfo ti[MAXTRACKS]; // get a sector from a msf-array -static unsigned int msf2sec(char *msf) { +unsigned int msf2sec(char *msf) { return ((msf[0] * 60 + msf[1]) * 75) + msf[2]; } -static void sec2msf(unsigned int s, char *msf) { +void sec2msf(unsigned int s, char *msf) { msf[0] = s / 75 / 60; s = s - msf[0] * 75 * 60; msf[1] = s / 75; |
