800p default

This commit is contained in:
Joshua Ashton 2023-04-08 00:56:48 +01:00
parent c0c161668b
commit d2c0e88105
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ namespace orange
return capabilities.currentExtent;
uint32_t width = 1280;
uint32_t height = 720;
uint32_t height = 800;
return VkExtent2D
{

View File

@ -19,7 +19,7 @@ namespace orange
}
SDL_Window* window = nullptr;
if (!(window = SDL_CreateWindow("Orange", 0, 0, 1280, 720, SDL_WINDOW_VULKAN)))
if (!(window = SDL_CreateWindow("Orange", 0, 0, 1280, 800, SDL_WINDOW_VULKAN)))
{
log::err("Failed to create SDL window: %s", Window::GetError());
return Result<Window>::Error(BasicErrorCode::Failed);