From 383968cc377b54ebe5ee691fcc2bd346e8e1465c Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 10 Feb 2025 17:05:02 +0100 Subject: [PATCH] Fixed an issue where the DateTimeComponent gamelist fadeout didn't work correctly --- es-core/src/components/DateTimeComponent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-core/src/components/DateTimeComponent.cpp b/es-core/src/components/DateTimeComponent.cpp index 3d003eeee..c4d67598f 100644 --- a/es-core/src/components/DateTimeComponent.cpp +++ b/es-core/src/components/DateTimeComponent.cpp @@ -126,6 +126,8 @@ std::string DateTimeComponent::getDisplayString() const void DateTimeComponent::update(int deltaTime) { + updateSelf(deltaTime); + if (!mClockMode || (mClockMode && !Settings::getInstance()->getBool("DisplayClock"))) return;