diff tools/ppl.c @ 745:ab645f4cb8fa

Uppercase the strings in PPL for now.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 04 May 2013 03:25:51 +0300
parents 3d813c81f33c
children ed60a7ee3ebb
line wrap: on
line diff
--- a/tools/ppl.c	Sat May 04 03:25:29 2013 +0300
+++ b/tools/ppl.c	Sat May 04 03:25:51 2013 +0300
@@ -182,7 +182,7 @@
 
     while (*ptr)
     {
-        int ch = *ptr++;
+        int ch = toupper(*ptr++);
         SDL_Surface *glyph;
 
         if (ch == '_')