diff options
author | dzwdz | 2022-08-06 00:12:51 +0200 |
---|---|---|
committer | dzwdz | 2022-08-06 00:12:51 +0200 |
commit | 03c6f3cf458c89df17b02557cd232f9cde73ed54 (patch) | |
tree | a89076307f32d9df6eec550f175accaa73d72408 /src/user/app/vterm/vterm.h | |
parent | 641b857dcfe1cfca625fbd75646b743142a9069c (diff) |
make snprintf shared; dynamic resolution support
Diffstat (limited to 'src/user/app/vterm/vterm.h')
-rw-r--r-- | src/user/app/vterm/vterm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user/app/vterm/vterm.h b/src/user/app/vterm/vterm.h index 5e09105..5cfc609 100644 --- a/src/user/app/vterm/vterm.h +++ b/src/user/app/vterm/vterm.h @@ -24,6 +24,7 @@ void font_blit(uint32_t glyph, int x, int y); struct framebuf { size_t len, width, height, pitch; + uint8_t bpp; char *b; }; extern struct framebuf fb; |