1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fix struct access

This commit is contained in:
Martin Cietwierkowski 2023-04-01 20:01:56 -04:00
parent 50e58fff5a
commit f450e3a1c5
2 changed files with 6 additions and 6 deletions

View file

@ -6657,8 +6657,8 @@ namespace SDL2
[CRepr] [CRepr]
public struct SDL_Locale public struct SDL_Locale
{ {
char8* language; public char8* language;
char8* country; public char8* country;
} }
[LinkName("SDL_GetPreferredLocales")] [LinkName("SDL_GetPreferredLocales")]

View file

@ -245,10 +245,10 @@ namespace SDL2
[CRepr] [CRepr]
public struct Animation public struct Animation
{ {
int32 w; public int32 w;
int32 h; public int32 h;
SDL.Surface** frames; public SDL.Surface** frames;
int32* delays; public int32* delays;
} }
[LinkName("IMG_LoadAnimation")] [LinkName("IMG_LoadAnimation")]