[PS2] gsKit: draw extended ascii

Create a single thread for each patch to be added to the repository. Please try to stay on topic.
Post Reply
User avatar
ifcaro
Posts: 23
Joined: Sun Oct 19, 2008 4:11 am

[PS2] gsKit: draw extended ascii

Post by ifcaro »

Hi, this patch fix drawing of ascii chars > 127

Code: Select all

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;
 
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

Code: Select all

$ svn commit
Sending        src/gsToolkit.c
Transmitting file data .
Committed revision 1664.
thanks
Post Reply