changeset 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 2726d91e3409
children fe5910d6df82
files tools/ppl.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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 == '_')