Index: uspace/srv/fb/fb.c
===================================================================
--- uspace/srv/fb/fb.c	(revision 700dcb56512f232c5ea579372dfb7d84382e7eff)
+++ uspace/srv/fb/fb.c	(revision 3c101bd4a1e9afc15309063fbefa099988c9efc9)
@@ -512,8 +512,8 @@
 			for (x = 0; x < FONT_WIDTH; x++) {
 				screen.mask_conv(&screen.glyphs[GLYPH_POS(glyph, y, false) + x * screen.pixelbytes],
-				    (fb_font[glyph][y] & (1 << (7 - x))) ? 1 : 0);
+				    (fb_font[glyph][y] & (1 << (7 - x))) ? true : false);
 				
 				screen.mask_conv(&screen.glyphs[GLYPH_POS(glyph, y, true) + x * screen.pixelbytes],
-				    (fb_font[glyph][y] & (1 << (7 - x))) ? 1 : 0);
+				    (fb_font[glyph][y] & (1 << (7 - x))) ? false : true);
 			}
 		}
