aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/psf.cc
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-28 15:07:12 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-28 15:07:12 +0200
commit067d6e340be698b0e26b7732215a1969e0e683f3 (patch)
tree88cf82e14bdcfc460a18980a73e419fbb0c58763 /src/drivers/psf.cc
parent778e43c0a2d1f1cc952c3ec0c0b9d5bd3ff4995a (diff)
Refactoring
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);