瀏覽代碼

Fixed documentation for aligned structure members

Sam Lantinga 1 天之前
父節點
當前提交
970234d62d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/SDL3/SDL_begin_code.h

+ 1 - 1
include/SDL3/SDL_begin_code.h

@@ -298,7 +298,7 @@
  * // make sure this one field in a struct is aligned to 16 bytes for SIMD access.
  * typedef struct {
  *    SomeStuff stuff;
- *    float position[4] SDL_ALIGNED(16);
+ *    float SDL_ALIGNED(16) position[4];
  *    SomeOtherStuff other_stuff;
  * } MyStruct;
  *