fix: stop checking Hz

This commit is contained in:
Brian Matzon 2003-03-16 20:31:40 +00:00
parent b10c34254e
commit 06da0d0017
1 changed files with 1 additions and 2 deletions

View File

@ -71,8 +71,7 @@ public class MouseCreationTest {
for (int i = 0; i < modes.length; i++) {
if (modes[i].width == 640
&& modes[i].height == 480
&& modes[i].bpp >= 16
&& modes[i].freq == 60) {
&& modes[i].bpp >= 16) {
displayMode = modes[i];
break;
}