comparison gui/skin/skin.c @ 32874:440e617c116b

Clarify the lower case transformation.
author ib
date Thu, 24 Feb 2011 15:11:10 +0000
parents cf385b1901cb
children 997208b63159
comparison
equal deleted inserted replaced
32873:cf385b1901cb 32874:440e617c116b
91 { 91 {
92 char *p = in; 92 char *p = in;
93 93
94 while (*p) { 94 while (*p) {
95 if (*p >= 'A' && *p <= 'Z') 95 if (*p >= 'A' && *p <= 'Z')
96 *p += ' '; 96 *p += 'a' - 'A';
97 97
98 p++; 98 p++;
99 } 99 }
100 100
101 return in; 101 return in;