core: change types from uint32_t to u32 (e.g)
This commit is contained in:
@ -1,9 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include <stdint.h>
|
||||
|
||||
struct icon {
|
||||
uint32_t height;
|
||||
uint32_t width;
|
||||
uint32_t *pixels;
|
||||
u32 height;
|
||||
u32 width;
|
||||
u32 *pixels;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user