mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 14:35:58 +00:00
undoing r3539 to fix issue with fullscreen
This commit is contained in:
parent
797048354c
commit
cfe74c2013
1 changed files with 1 additions and 1 deletions
|
|
@ -259,7 +259,7 @@ public final class Display {
|
|||
}
|
||||
|
||||
private static DisplayMode getEffectiveMode() {
|
||||
return !isFullscreen() && parent != null ? (current_mode = new DisplayMode(parent.getWidth(), parent.getHeight())) : current_mode;
|
||||
return !isFullscreen() && parent != null ? new DisplayMode(parent.getWidth(), parent.getHeight()) : current_mode;
|
||||
}
|
||||
|
||||
private static int getWindowX() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue