change copied timer to deltatime

This commit is contained in:
Eknous-P 2024-09-22 11:55:54 +04:00
parent 8dc8bc285d
commit 07b41e03c8
2 changed files with 6 additions and 6 deletions

View file

@ -2277,7 +2277,7 @@ class FurnaceGUI {
struct Tutorial {
bool introPlayed;
bool protoWelcome;
unsigned short popupTimer;
double popupTimer;
Tutorial():
#ifdef SUPPORT_XP
introPlayed(true),
@ -2285,7 +2285,7 @@ class FurnaceGUI {
introPlayed(false),
#endif
protoWelcome(false),
popupTimer(65535) {
popupTimer(1.0f) {
}
} tutorial;