From a9776983360f520eef61fcd37430806a60064c7c Mon Sep 17 00:00:00 2001 From: Martin Felis Date: Fri, 14 Mar 2025 12:36:22 +0100 Subject: [PATCH] Fixed crash when starting up and no proper application config was available. --- src/main.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cc b/src/main.cc index 419174e..fc95b60 100644 --- a/src/main.cc +++ b/src/main.cc @@ -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;