summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--libpcsxcore/sio.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 13b95485..218ccb10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/libpcsxcore/sio.c b/libpcsxcore/sio.c
index a31d6ee7..ce611648 100644
--- a/libpcsxcore/sio.c
+++ b/libpcsxcore/sio.c
@@ -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';