mirror of https://github.com/ppy/SDL3-CS.git
Fix underlying enum types
This commit is contained in:
parent
dddb17d34d
commit
b7ca494978
|
|
@ -7,7 +7,7 @@ namespace SDL
|
|||
{
|
||||
[Flags]
|
||||
[Typedef]
|
||||
public enum IMG_InitFlags : int
|
||||
public enum IMG_InitFlags : UInt32
|
||||
{
|
||||
IMG_INIT_JPG = SDL3_image.IMG_INIT_JPG,
|
||||
IMG_INIT_PNG = SDL3_image.IMG_INIT_PNG,
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ namespace SDL
|
|||
{
|
||||
[Flags]
|
||||
[Typedef]
|
||||
public enum TTF_SubStringFlags : int
|
||||
public enum TTF_SubStringFlags : UInt32
|
||||
{
|
||||
TTF_SUBSTRING_TEXT_START = SDL3_ttf.TTF_SUBSTRING_TEXT_START,
|
||||
TTF_SUBSTRING_LINE_START = SDL3_ttf.TTF_SUBSTRING_LINE_START,
|
||||
|
|
|
|||
Loading…
Reference in New Issue