ifcaro

Joined: 19 Oct 2008 Posts: 23
|
Posted: Sun Nov 08, 2009 6:43 am Post subject: [PS2] gsKit: draw extended ascii |
|
|
Hi, this patch fix drawing of ascii chars > 127
| Code: | Index: ee/toolkit/src/gsToolkit.c
===================================================================
--- ee/toolkit/src/gsToolkit.c (revision 1663)
+++ ee/toolkit/src/gsToolkit.c (working copy)
@@ -937,7 +937,7 @@
int cx,cy,i,l;
- char c;
+ unsigned char c;
cx=X;
cy=Y;
@@ -983,7 +983,7 @@
gsGlobal->PrimAlpha=ALPHA_BLEND_ADD;
int cx,cy,i,l;
- char c;
+ unsigned char c;
cx=X;
cy=Y;
|
|
|