diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-04 11:22:59 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-06-04 11:22:59 +0200 |
| commit | 17319efd8f938fbc7b7bab8ff4dcdc6b0426c6ec (patch) | |
| tree | 95e2e3c1f82e821908049d28f2a4181e422f3254 | |
| parent | d3922ebc065b2beeaddee4638a9c9cd3eec128d8 (diff) | |
Remove SDL3/TTF flag NORMAL
It's a `bit_set`, and NORMAL is an empty one.
https://wiki.libsdl.org/SDL3_ttf/TTF_SetFontStyle
Fixes #5275
| -rw-r--r-- | vendor/sdl3/ttf/sdl3_ttf.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/sdl3/ttf/sdl3_ttf.odin b/vendor/sdl3/ttf/sdl3_ttf.odin index 1529e312e..ea71cf776 100644 --- a/vendor/sdl3/ttf/sdl3_ttf.odin +++ b/vendor/sdl3/ttf/sdl3_ttf.odin @@ -51,7 +51,6 @@ Text :: struct { } FontStyle :: enum u32 { - NORMAL, BOLD, ITALIC, UNDERLINE, |