diff options
| author | Laytan <laytanlaats@hotmail.com> | 2024-12-11 23:02:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-11 23:02:25 +0100 |
| commit | cecd7ea0b2a7cb9432f55f1abc65256a3c734314 (patch) | |
| tree | d89c4faf7be29448a376d32ab681c9efe68b3b12 | |
| parent | db1b67dabad560cae3c90d49964c2aec982cbc94 (diff) | |
| parent | 6bcfafc3a8885966f5ae11983813698a1293e282 (diff) | |
Merge pull request #4572 from GonkieDev/win32_rawinput_typo_fix
Typo in windows rawinput constant's name
| -rw-r--r-- | core/sys/windows/user32.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index 4ae33cd32..957d6ab70 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -548,7 +548,7 @@ RI_KEY_TERMSRV_SHADOW :: 0x10 MOUSE_MOVE_RELATIVE :: 0x00 MOUSE_MOVE_ABSOLUTE :: 0x01 MOUSE_VIRTUAL_DESKTOP :: 0x02 -MOUSE_ATTRIUBTTES_CHANGED :: 0x04 +MOUSE_ATTRIBUTES_CHANGED :: 0x04 MOUSE_MOVE_NOCOALESCE :: 0x08 RI_MOUSE_BUTTON_1_DOWN :: 0x0001 |