This commit is contained in:
Baptiste Wicht 2014-01-09 22:43:26 +01:00
parent fd92873000
commit e46b1fc015

View File

@ -16,7 +16,7 @@ uint8_t make_color(uint8_t fg, uint8_t bg){
return fg | bg << 4;
}
uint16_t make_vga_entry(char c, uint8_t color){
uint16_t make_vga_entry(const char c, uint8_t color){
uint16_t c16 = c;
uint16_t color16 = color;
return c16 | color16 << 8;