浏览代码

Merge pull request #4488 from NicknEma/win32-struct-fix

Fix integer type
Jeroen van Rijn 11 月之前
父节点
当前提交
a3442b22da
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/sys/windows/ux_theme.odin

+ 1 - 1
core/sys/windows/ux_theme.odin

@@ -3,7 +3,7 @@ package sys_windows
 
 foreign import uxtheme "system:UxTheme.lib"
 
-MARGINS :: distinct [4]int
+MARGINS :: distinct [4]i32
 PMARGINS :: ^MARGINS
 
 @(default_calling_convention="system")