*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2004-05-25 15:19:16 +00:00
parent 4791b60784
commit d137610528
1 changed files with 4 additions and 4 deletions

View File

@ -357,14 +357,14 @@ public class Mouse {
// clamp x, y
if (x < 0) {
x = 0;
} else if (x > Window.getWidth()) {
x = Window.getWidth();
} else if (x >= Window.getWidth()) {
x = Window.getWidth() - 1;
}
if (y < 0) {
y = 0;
} else if (y > Window.getHeight()) {
y = Window.getHeight();
} else if (y >= Window.getHeight()) {
y = Window.getHeight() - 1;
}
}
if (readBuffer != null) read();