summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-10-02 14:52:30 +0200
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-10-08 21:03:28 +0200
commit7de0b165f196cb0c1f983b6d2ab26ef9791a2d36 (patch)
tree86f55c00b3fe17dae950351f3c33d35e6abd5a4d /src/gui
parent59a7d5c58f8b3af21b3e19d4e78f5653bf011bfb (diff)
downloadmana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.gz
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.bz2
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.tar.xz
mana-7de0b165f196cb0c1f983b6d2ab26ef9791a2d36.zip
Do a single logic update each frame
The logic update now uses Time::deltaTimeMs() where needed to make it framerate-independent. This means there will no longer be multiple logic calls per frame (as was usually the case with logic ticking at 100 fps whereas the game would generally run at 60 fps). At the same time, the game can be more precise at higher framerates and should now run smoother at 144 Hz, for example. Previously the game would sometimes skip logic ticks at that rate. This change affects: * Updating of animations * Being movement speed * More moving of manual time variables to Timer Notoriously, the particle system still does 100 ticks/second.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/widgets/progressindicator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/progressindicator.cpp b/src/gui/widgets/progressindicator.cpp
index 37aaab62..496bd8a1 100644
--- a/src/gui/widgets/progressindicator.cpp
+++ b/src/gui/widgets/progressindicator.cpp
@@ -48,7 +48,7 @@ ProgressIndicator::~ProgressIndicator() = default;
void ProgressIndicator::logic()
{
- mIndicator->update(10);
+ mIndicator->update(Time::deltaTimeMs());
}
void ProgressIndicator::draw(gcn::Graphics *graphics)