Make fontChars parameter optional in Font.initEx to match rl.loadFontEx (#123)
This commit is contained in:
parent
201926cfd3
commit
85e07d7db5
2 changed files with 2 additions and 2 deletions
|
|
@ -1282,7 +1282,7 @@ pub const Font = extern struct {
|
|||
}
|
||||
|
||||
/// Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set
|
||||
pub fn initEx(fileName: [*:0]const u8, fontSize: i32, fontChars: []i32) Font {
|
||||
pub fn initEx(fileName: [*:0]const u8, fontSize: i32, fontChars: ?[]i32) Font {
|
||||
return rl.loadFontEx(fileName, fontSize, fontChars);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue