Modified the default dimentions to be 1080p

This commit is contained in:
Alexandre 2026-07-20 00:51:46 +02:00
parent e3fd8a5b2b
commit 622c0478ac

View File

@ -44,7 +44,7 @@ class Engine {
//========== Class Members ========== //========== Class Members ==========
bool _isInitialized { false }; bool _isInitialized { false };
int _frameNumber { 0 }; int _frameNumber { 0 };
VkExtent2D _windowExtent { 1700, 900 }; VkExtent2D _windowExtent { 1920, 1080 };
GLFWwindow *window { nullptr }; GLFWwindow *window { nullptr };