Don't consider modes with higher than 75Hz refresh.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1358 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-05-09 18:43:56 +00:00
parent 78ec4ab84b
commit 70c8067048
@@ -1,5 +1,5 @@
//
// $Id: ModeUtil.java,v 1.2 2002/04/28 01:30:10 mdb Exp $
// $Id: ModeUtil.java,v 1.3 2002/05/09 18:43:56 mdb Exp $
package com.threerings.media.util;
@@ -63,7 +63,8 @@ public class ModeUtil
for (int i = 0; i < modes.length; i++) {
if (modes[i].getWidth() == 800 &&
modes[i].getHeight() == 600 &&
modes[i].getBitDepth() >= minimumDepth) {
modes[i].getBitDepth() >= minimumDepth &&
modes[i].getRefreshRate() <= 75) {
mset.add(modes[i]);
}
}