Revert windows enum size change

This commit is contained in:
Nic Barker 2025-01-03 09:51:31 +13:00
parent 907ce2952e
commit 71575c7093

View File

@ -63,7 +63,11 @@ ElementId :: struct {
stringId: String,
}
EnumBackingType :: u8
when ODIN_OS == .Windows {
EnumBackingType :: u32
} else {
EnumBackingType :: u8
}
ElementConfigType :: enum EnumBackingType {
Rectangle = 1,