CVSROOT: /cvs Module name: src Changes by: fcam...@cvs.openbsd.org 2017/06/17 13:20:30
Modified files: sys/dev/ic : vga.c Log message: The fonts we are looping through in vga_selectfont() are the builtin font which is using the IBM encoding, and some potentially loaded fonts which are either IBM or ISO encoded. Therefore the condition checked by vga_valid_font() is always true, and we can remove it. Thanks to miod@ for pointing this out. OK tb@