summaryrefslogtreecommitdiff
path: root/src/drivers/video/vga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/video/vga.c')
-rw-r--r--src/drivers/video/vga.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/video/vga.c b/src/drivers/video/vga.c
index cf1157c..bb73f1e 100644
--- a/src/drivers/video/vga.c
+++ b/src/drivers/video/vga.c
@@ -312,9 +312,9 @@ void vga_draw_char( vga_t *vga, const unsigned char c, const int x, const int y,
for( int xx = 0; xx < vga_font.Width; xx++ ) {
for( int yy = 0; yy < vga_font.Height; yy++ ) {
if( bmap[yy] & mask[xx] ) {
- vga_set_pixel( vga, x + xx, y + yy, foreground );
+ vga_set_pixel( vga, x + 10 - xx, y + yy, foreground );
} else {
- vga_set_pixel( vga, x + xx, y + yy, background );
+ vga_set_pixel( vga, x + 10 - xx, y + yy, background );
}
}
}