this should be better

This commit is contained in:
Eknous-P 2024-09-21 11:32:25 +04:00
parent 7b8ab2ba78
commit 198e371435
2 changed files with 25 additions and 7 deletions

View file

@ -2276,13 +2276,15 @@ class FurnaceGUI {
struct Tutorial {
bool introPlayed;
bool protoWelcome;
unsigned short popupTimer;
Tutorial():
#ifdef SUPPORT_XP
introPlayed(true),
#else
introPlayed(false),
#endif
protoWelcome(false) {
protoWelcome(false),
popupTimer(65535) {
}
} tutorial;