keymap: use uchar instead of char to avoid narrowing conversion warnings.

This commit is contained in:
Jérôme Duval 2013-04-29 21:09:59 +02:00
parent 311e148798
commit 295cdbee6b
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ Keymap::SaveAsCppHeader(const char* fileName, const char* mapName)
fputs("};\n\n", file);
fputs("const char kSystemKeyChars[] = {\n", file);
fputs("const uchar kSystemKeyChars[] = {\n", file);
for (uint32 i = 0; i < fCharsSize; i++) {
if (i % 10 == 0) {