From 1ebb8efdb6ef9e524db6025b1c3851829c5ca36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ed=C3=AAnis=20Freindorfer=20Azevedo?= Date: Tue, 12 Mar 2019 14:37:16 -0300 Subject: [PATCH] Fix to set correctly position Y. --- src/wx/wxvbam.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/wxvbam.cpp b/src/wx/wxvbam.cpp index a72d6590..1abec074 100644 --- a/src/wx/wxvbam.cpp +++ b/src/wx/wxvbam.cpp @@ -399,7 +399,7 @@ bool wxvbamApp::OnInit() // create the main window int x = windowPositionX; - int y = windowPositionX; + int y = windowPositionY; int width = windowWidth; int height = windowHeight; int isFullscreen = fullScreen;