mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 06:53:59 +00:00
doh, clamping to width instead of height
This commit is contained in:
parent
10b03d418f
commit
55544a36f3
1 changed files with 1 additions and 1 deletions
|
|
@ -329,7 +329,7 @@ public class Mouse {
|
|||
if (y < 0) {
|
||||
y = 0;
|
||||
} else if (y > Window.getHeight()) {
|
||||
y = Window.getWidth();
|
||||
y = Window.getHeight();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue