call setLocation _after_ window has been created

This commit is contained in:
Elias Naur 2005-01-06 14:22:25 +00:00
parent 4def20c892
commit 3a320a7cbf
1 changed files with 6 additions and 6 deletions

View File

@ -201,13 +201,13 @@ public final class Display {
* A native context must exist, and it will be attached to the window.
*/
private static void createWindow() throws LWJGLException {
// if no display location set, center window
if(x == -1 && y == -1) {
setLocation(Math.max(0, (initial_mode.getWidth() - current_mode.getWidth()) / 2),
Math.max(0, (initial_mode.getHeight() - current_mode.getHeight()) / 2));
}
display_impl.createWindow(current_mode, fullscreen, (fullscreen) ? 0 : x, (fullscreen) ? 0 : y);
// if no display location set, center window
if(x == -1 && y == -1) {
setLocation(Math.max(0, (initial_mode.getWidth() - current_mode.getWidth()) / 2),
Math.max(0, (initial_mode.getHeight() - current_mode.getHeight()) / 2));
}
setTitle(title);
initControls();
setVSyncEnabled(vsync);