diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-01-23 09:32:45 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-01-23 09:32:45 +0000 |
| commit | 874cded1b9315cc66d19271b18f8829fd1709f31 (patch) | |
| tree | a47e43b8fdaf5fe65285b4a205d2862148c33c0b /libpcsxcore | |
| parent | 069873cb1960e771822f408037c2e021c5dfe46f (diff) | |
| download | pcsxr-874cded1b9315cc66d19271b18f8829fd1709f31.tar.gz | |
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@40652 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore')
| -rw-r--r-- | libpcsxcore/ppf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpcsxcore/ppf.c b/libpcsxcore/ppf.c index 63001ae0..e77eb107 100644 --- a/libpcsxcore/ppf.c +++ b/libpcsxcore/ppf.c @@ -181,10 +181,10 @@ void BuildPPFCache() { ppfHead = NULL; // Generate filename in the format of SLUS_123.45 - buffer[0] = CdromId[0]; - buffer[1] = CdromId[1]; - buffer[2] = CdromId[2]; - buffer[3] = CdromId[3]; + buffer[0] = toupper(CdromId[0]); + buffer[1] = toupper(CdromId[1]); + buffer[2] = toupper(CdromId[2]); + buffer[3] = toupper(CdromId[3]); buffer[4] = '_'; buffer[5] = CdromId[4]; buffer[6] = CdromId[5]; |
