core: change types from uint32_t to u32 (e.g)

This commit is contained in:
2025-01-27 11:26:15 +01:00
parent 95fec015f2
commit d7626df19c
51 changed files with 422 additions and 374 deletions

View File

@ -1,10 +1,11 @@
#pragma once
#include "types.h"
#include <stdint.h>
struct font {
uint32_t height;
uint32_t width;
uint32_t yoffset;
u32 height;
u32 width;
u32 yoffset;
char *bitmap;
};