diff options
author | Marvin Borner | 2020-07-25 19:07:04 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-25 19:07:04 +0200 |
commit | c3dbbb2911b02c7d75f608f2d0d5a82864076df5 (patch) | |
tree | be5c0d56f54bb38338d6b94fd1448e59da063a48 /src/inc/psf.h | |
parent | 6e8fd8c61a77e4eb08d859f8e0fc42226cc4c7f3 (diff) |
Some progress for PSF2
Diffstat (limited to 'src/inc/psf.h')
-rw-r--r-- | src/inc/psf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inc/psf.h b/src/inc/psf.h index 3394f9c..ced3025 100644 --- a/src/inc/psf.h +++ b/src/inc/psf.h @@ -19,8 +19,8 @@ struct psf1_header { u8 magic[2]; - u8 file_mode; - u8 font_height; + u8 mode; + u8 char_size; }; /** @@ -38,7 +38,7 @@ struct psf2_header { u32 size; u32 flags; u32 glyph_count; - u32 bytes_per_glyph; + u32 char_size; u32 height; u32 width; }; |