diff --git a/src/settings.cpp b/src/settings.cpp index 6b7add6d..2cca867e 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -21,7 +21,7 @@ bool isPlugin = false; std::string token; bool windowMaximized = false; -math::Vec windowSize = math::Vec(1280, 720); +math::Vec windowSize = math::Vec(1024, 720); math::Vec windowPos = math::Vec(NAN, NAN); bool invertZoom = false; float pixelRatio = 0.0; diff --git a/src/window/Window.cpp b/src/window/Window.cpp index 3b4dc158..64de1bf8 100644 --- a/src/window/Window.cpp +++ b/src/window/Window.cpp @@ -271,7 +271,7 @@ Window::Window() { #endif // Create window - win = glfwCreateWindow(1280, 720, "", NULL, NULL); + win = glfwCreateWindow(1024, 720, "", NULL, NULL); if (!win) { osdialog_message(OSDIALOG_ERROR, OSDIALOG_OK, "Could not open GLFW window. Does your graphics card support OpenGL 2.0 or greater? If so, make sure you have the latest graphics drivers installed."); throw Exception("Could not create Window");