capy-ui / capy

💻Build one codebase and get native UI on Windows, Linux and Web
https://capy-ui.org
Mozilla Public License 2.0
1.69k stars 62 forks source link

Fix alignCast error on aarch64-linux #31

Closed desttinghim closed 1 year ago

desttinghim commented 1 year ago

The alignment of [16]u8 on aarch64 was apparently 1, causing the alignCast to fail. Setting the align to 4 solves the issue.

zenith391 commented 1 year ago

Thanks!