From 4b0bc220e4da1173f742a4973939b139bef562db Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Fri, 21 Jul 2023 00:58:49 +1000 Subject: Support for changing the game's timescale Context-specific (like per-world) timescales can also be added later --- source/windowing/StarLayout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/windowing/StarLayout.cpp') diff --git a/source/windowing/StarLayout.cpp b/source/windowing/StarLayout.cpp index fb8a8fd..b404f12 100644 --- a/source/windowing/StarLayout.cpp +++ b/source/windowing/StarLayout.cpp @@ -6,8 +6,8 @@ Layout::Layout() { markAsContainer(); } -void Layout::update() { - Widget::update(); +void Layout::update(float dt) { + Widget::update(dt); } } -- cgit v1.2.3