Skip to content

Commit 6dca022

Browse files
authored
sokol: fix missing import in sfons. Fixes #13061 (#13062)
1 parent 8088f46 commit 6dca022

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vlib/sokol/sfons/sfons.c.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
module sfons
22

33
import fontstash
4+
import sokol.f
45

56
// keep v from warning about unused imports
6-
const used_import = fontstash.used_import + 1
7+
const used_import = f.used_import + fontstash.used_import + 1
78

89
[inline]
910
pub fn create(width int, height int, flags int) &fontstash.Context {

0 commit comments

Comments
 (0)