From d01cecdaca2f14cb7d2bfd45e308d63cc5ac1daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zaremba?= Date: Wed, 29 Oct 2025 18:17:02 +0100 Subject: [PATCH] Initialize cursor currentFrame to 0 to avoid stall --- client/gui/CursorHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gui/CursorHandler.h b/client/gui/CursorHandler.h index 3ccd41ced..7632dbaf3 100644 --- a/client/gui/CursorHandler.h +++ b/client/gui/CursorHandler.h @@ -132,7 +132,7 @@ class CursorHandler final Point pos; float frameTime; int32_t currentCursorIndex; - int32_t currentFrame; + int32_t currentFrame {}; Cursor::ShowType showType; bool showing;