diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-08-14 13:25:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-14 13:25:23 +0200 |
| commit | 7973f7e75074c25eb5c442689f4e83d9d424f3f2 (patch) | |
| tree | f2511be6d4911e5fb68b1c85bc31abb3ce8afb4f | |
| parent | 081e36c909529ce7ff5d74ae6b78e31a26691b9e (diff) | |
| parent | 3dc62a67e0d06db4dea1ace9b451de3520e2cf27 (diff) | |
Merge pull request #1949 from matias-eduardo/patch-1
Typo: `GetWindowLongW` to `SetWindowLongW`
| -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 90961ba8c..4b3d3e68e 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -235,7 +235,7 @@ when ODIN_ARCH == .amd64 { SetClassLongPtrW :: SetClassLongW GetWindowLongPtrW :: GetWindowLongW - SetWindowLongPtrW :: GetWindowLongW + SetWindowLongPtrW :: SetWindowLongW } GET_SC_WPARAM :: #force_inline proc "contextless" (wParam: WPARAM) -> c_int { |