git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@51149 e17a0e51-4ae3-4d35-97c3-1a29b211df97

This commit is contained in:
SND\weimingzhi_cp 2010-06-06 02:23:54 +00:00
parent 2025410a8c
commit 6500edc4bc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Jun 6, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
* libpcsxcore/sio.c: Fixed: 'y' and 'z' not converted to half-width.
Jun 4, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
* gui/Plugin.c: Hack-fixed the bug which causes crash when loading state

View File

@ -697,7 +697,7 @@ void GetMcdBlockInfo(int mcd, int block, McdBlock *Info) {
if (!c) break;
// Convert ASCII characters to half-width
if (c >= 0x8281 && c <= 0x8298)
if (c >= 0x8281 && c <= 0x829A)
c = (c - 0x8281) + 'a';
else if (c >= 0x824F && c <= 0x827A)
c = (c - 0x824F) + '0';