diff --git a/src/ChargeVideo.hpp b/src/ChargeVideo.hpp index 56be467..99c3856 100644 --- a/src/ChargeVideo.hpp +++ b/src/ChargeVideo.hpp @@ -40,7 +40,7 @@ using namespace Math::Literals; // ======================== CLASSES ======================== class Manager { public: - static void AdvanceTime(); + static void Advance(); static float DeltaTime; private: diff --git a/src/Manager.cpp b/src/Manager.cpp index 47b67a4..01c143f 100644 --- a/src/Manager.cpp +++ b/src/Manager.cpp @@ -13,7 +13,7 @@ std::vector Manager::toUnhook; Timeline Manager::time{}; -void Manager::AdvanceTime() { +void Manager::Advance() { if (time.currentFrameTime() == 0.0f) { time.start(); }