Mainly Javadoc fixes and Math stuff

This commit is contained in:
Caspian Rychlik-Prince 2002-08-23 16:14:38 +00:00
parent a5615938c9
commit 0f2936e709
5 changed files with 30 additions and 27 deletions

View file

@ -43,18 +43,18 @@ package org.lwjgl;
public final class DisplayMode {
public final int width, height, freq, bpp;
public final int width, height, bpp, freq;
/**
* Construct a display mode.
*
* @see Display
*/
public DisplayMode(int width, int height, int freq, int bpp) {
public DisplayMode(int width, int height, int bpp, int freq) {
this.width = width;
this.height = height;
this.freq = freq;
this.bpp = bpp;
this.freq = freq;
}