diff --git a/code/font/VEFontCache/Readme.md b/code/font/VEFontCache/Readme.md index 72cef34..f6690a9 100644 --- a/code/font/VEFontCache/Readme.md +++ b/code/font/VEFontCache/Readme.md @@ -1,6 +1,6 @@ # VE Font Cache : Odin Port -This is a port of the library base on [fork](https://github.com/hypernewbie/VEFontCache) +This is a port of the library based on [fork](https://github.com/hypernewbie/VEFontCache) Its original purpose was for use in game engines, however its rendeirng quality and performance is more than adequate for many other applications. diff --git a/code/font/VEFontCache/misc.odin b/code/font/VEFontCache/misc.odin index 7d9f863..cba3de4 100644 --- a/code/font/VEFontCache/misc.odin +++ b/code/font/VEFontCache/misc.odin @@ -180,7 +180,7 @@ else } simd_to_vec2 :: #force_inline proc "contextless" (v: Vec2_SIMD) -> Vec2 { - return Vec2{simd.extract(v, 0), simd.extract(v, 1)} + return Vec2{ simd.extract(v, 0), simd.extract(v, 1) } } vec2_add_simd :: #force_inline proc "contextless" (a, b: Vec2) -> Vec2 {