aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/graphics/graphics.h
diff options
context:
space:
mode:
authorMarvin Borner2020-03-18 17:32:50 +0100
committerMarvin Borner2020-03-18 17:32:50 +0100
commitf495cc1e93710c233292a503720ec235a61b685c (patch)
tree23b0b4b82b6d80001c1ffdb15f00b93cbdc65722 /src/userspace/graphics/graphics.h
parentc6657aac0c5d5ecf347bc082cb6df38e1174d297 (diff)
Applied official linux kernel code style guidelines
Due to my change to vim and the clang-format plugin this was needed!
Diffstat (limited to 'src/userspace/graphics/graphics.h')
-rw-r--r--src/userspace/graphics/graphics.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/userspace/graphics/graphics.h b/src/userspace/graphics/graphics.h
index a0dcaf5..0e3d5be 100644
--- a/src/userspace/graphics/graphics.h
+++ b/src/userspace/graphics/graphics.h
@@ -4,15 +4,15 @@
#include <stdint.h>
struct font {
- uint16_t font_32[758][32];
- uint16_t font_24[758][24];
- uint8_t font_16[758][16];
- uint16_t cursor[19];
+ uint16_t font_32[758][32];
+ uint16_t font_24[758][24];
+ uint8_t font_16[758][16];
+ uint16_t cursor[19];
};
struct userspace_pointers {
- unsigned char *fb;
- struct font *font;
+ unsigned char *fb;
+ struct font *font;
};
void init_framebuffer();