We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803a15d commit e64a109Copy full SHA for e64a109
1 file changed
src/content/docs/hh3/getting-started/migrate.mdx
@@ -242,7 +242,7 @@ If your app loads into VRAM:
242
* **Alignment**: File path buffers passed to SDK functions (like `File_FindFirst`) MUST be 4-byte aligned on SuperH. Use `__attribute__((aligned(4)))`.
243
* **Structs**: `File_FindInfo` uses scoped enums like `File_FindInfo::EntryTypeDirectory` (or just `EntryTypeDirectory` depending on SDK version/macros). Check scoping.
244
245
-## Input
+### Input
246
* **Polling**: Use `GetInput` instead of `GetKey`.
247
* **Struct**: `struct Input_Event` MUST be 4-byte aligned. Use `__attribute__((aligned(4)))`. Misalignment causes crashes (address error) at runtime.
248
* **Keycodes**: Use `KEYCODE_*` enums.
0 commit comments