diff --git a/raylib/rcore.go b/raylib/rcore.go index 0fe3595..1a42bb6 100644 --- a/raylib/rcore.go +++ b/raylib/rcore.go @@ -583,7 +583,7 @@ func GetRandomValue(min, max int32) int32 { } // SetConfigFlags - Setup some window configuration flags -func SetConfigFlags(flags byte) { +func SetConfigFlags(flags uint32) { cflags := (C.uint)(flags) C.SetConfigFlags(cflags) }