diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-07-20 15:37:20 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-07-20 15:37:20 +0200 |
| commit | e70ea7c646ad18ab66c9ea45ef43de9f30a26bd9 (patch) | |
| tree | 46d929a6123927ab93541618cbe14be69d85aa59 /util/sokol_debugtext.h | |
| parent | 391e78c44634d0b51fb76fbe79156474fff73461 (diff) | |
sokol_debugtext.h: fixes for latest sokol_gfx.h changes
Diffstat (limited to 'util/sokol_debugtext.h')
| -rw-r--r-- | util/sokol_debugtext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sokol_debugtext.h b/util/sokol_debugtext.h index 51c33dc8..34a24088 100644 --- a/util/sokol_debugtext.h +++ b/util/sokol_debugtext.h @@ -4439,7 +4439,7 @@ static void _sdtx_setup_common(void) { sg_view_desc view_desc; _sdtx_clear(&view_desc, sizeof(view_desc)); - view_desc.texture_binding.image = _sdtx.font_img; + view_desc.texture.image = _sdtx.font_img; _sdtx.font_view = sg_make_view(&view_desc); SOKOL_ASSERT(SG_INVALID_ID != _sdtx.font_view.id); |