From e472d9537ee7919630e5f6039f8425b06f6c4213 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 8 Mar 2022 19:33:59 +0100 Subject: Replaced time funcs from Game with Clock equivalents This excludes time compression stuff, as it will need some more attention due to casting. I don't quite like the long invocations that go through game instance first then get the clock. It looks bad. I'll need to rethink how modules are being made available in the codebase. --- Stars45/MusicTrack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Stars45/MusicTrack.cpp') diff --git a/Stars45/MusicTrack.cpp b/Stars45/MusicTrack.cpp index 0454b11..956d0b5 100644 --- a/Stars45/MusicTrack.cpp +++ b/Stars45/MusicTrack.cpp @@ -135,7 +135,7 @@ MusicTrack::ExecFrame() } if (fade > 0) - fade -= Game::GetInstance()->GUITime(); + fade -= Game::GetInstance()->GetClock()->GuiDelta(); if (fade < 0) fade = 0; -- cgit v1.1