aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/psf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/psf.cc')
-rw-r--r--src/drivers/psf.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/drivers/psf.cc b/src/drivers/psf.cc
index 187d711..ce838e8 100644
--- a/src/drivers/psf.cc
+++ b/src/drivers/psf.cc
@@ -38,7 +38,6 @@ void psf_putchar(char c){
u8* glyph=(psf_status.psf_addr+psf_status.header.header_length+c*psf_status.header.glyph_size);
FB_PIXEL pixel;
for(int i=0;i<psf_status.header.glyph_height;i++){
- PAGING_MAP(glyph);
for(int k=0;k<(psf_status.header.glyph_width/8);k++){
u8 mask=1<<7;
u8 row=*(glyph+k);