diff options
author | Christian Cunningham <cc@localhost> | 2022-04-06 11:38:04 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-06 11:38:04 -0700 |
commit | c91e11c05885a62a9c3ef2bb5af5834edde959c9 (patch) | |
tree | f113a0526abd35dc4d5733fa1bccbc6c6b84272f /include/graphics | |
parent | f95e042ce284510a78c7dab85f8053c966ff114e (diff) |
Make changing resolution easier
Diffstat (limited to 'include/graphics')
-rw-r--r-- | include/graphics/lfb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/graphics/lfb.h b/include/graphics/lfb.h index 8184959..dec9aad 100644 --- a/include/graphics/lfb.h +++ b/include/graphics/lfb.h @@ -6,7 +6,7 @@ #define DRAW64(x,y,v) draw_hex32(x,y,v>>32);draw_hex32(x+8,y,v); -void lfb_init(void); +void lfb_init(unsigned long w, unsigned long h); void lfb_showpicture(void); void clear_screen(void); |