Fixed crash when starting up and no proper application config was available.

This commit is contained in:
Martin Felis 2025-03-14 12:36:22 +01:00
parent 0f9f9d6283
commit a977698336

View File

@ -117,6 +117,8 @@ struct Viewport {
sg_image depth_image = {};
int size[2] = {400, 400};
Viewport() { Resize(size[0], size[1]); }
void Resize(int width, int height) {
width = width < 1 ? 1 : width;
height = height < 1 ? 1 : height;