 src/win/wwindow.c | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/src/win/wwindow.c b/src/win/wwindow.c
index a18acea..b0767bc 100644
--- a/src/win/wwindow.c
+++ b/src/win/wwindow.c
@@ -128,8 +128,9 @@ HWND _al_win_create_window(ALLEGRO_DISPLAY *display, int width, int height, int
    HWND my_window;
    DWORD style;
    DWORD ex_style;
-   int pos_x, pos_y;
-   bool center = false;
+   int pos_x = 0;
+   int pos_y = 0;
+//   bool center = false;// center windows automatically for now
    ALLEGRO_DISPLAY_WIN *win_display = (ALLEGRO_DISPLAY_WIN *)display;
    WINDOWINFO wi;
    int lsize, rsize, tsize, bsize; // left, right, top, bottom border sizes
@@ -142,12 +143,8 @@ HWND _al_win_create_window(ALLEGRO_DISPLAY *display, int width, int height, int
    if ((flags & ALLEGRO_FULLSCREEN) || (flags & ALLEGRO_FULLSCREEN_WINDOW)) {
       pos_x = pos_y = 0;
    }
-   else if (pos_x == INT_MAX) {
-      pos_x = pos_y = 0;
-      center = true;
-   }
-
-   if (center) {
+   else {
+      // window, center for now, unless we can remember the old position somehow
       _al_win_get_window_center(win_display, width, height, &pos_x, &pos_y);
    }
 
