mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 07:24:20 +00:00
Mainly Javadoc fixes and Math stuff
This commit is contained in:
parent
a5615938c9
commit
0f2936e709
5 changed files with 30 additions and 27 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue