diff --git a/uppbox/FontCover/main.cpp b/uppbox/FontCover/main.cpp index 3ea2bb755..5a7417592 100644 --- a/uppbox/FontCover/main.cpp +++ b/uppbox/FontCover/main.cpp @@ -40,7 +40,7 @@ GUI_APP_MAIN dword h = 0; for(int ch = 32; ch < 65536; ch++) { if(GetGlyphInfo(fnt, ch).IsNormal()) { - h |= (0x8000000 >> ((dword)ch >> 11)); + h |= (0x80000000 >> ((dword)ch >> 11)); ch |= 2047; } }