-
Notifications
You must be signed in to change notification settings - Fork 107
Open
Labels
help wantedExtra attention is neededExtra attention is neededinvalidThis doesn't seem rightThis doesn't seem rightmod
Description
LHiver Mod recognizes new game as outdated save, and print following message:
Routine directly responsible for printing:
func void B_MOD_VERSION() {
if (VERSION_CHECK_13 == FALSE) {
AI_PRINTSCREEN("Achtung!", -1, 11, FONT_SCREENBRIGHTLARGE, 7);
AI_PRINTSCREEN("Alter Spielstand geladen", -1, 14, FONT_SCREENBRIGHTLARGE, 8);
AI_PRINTSCREEN("damit die Mod richtig funktioniert", -1, 17, FONT_SCREENBRIGHTLARGE, 9);
AI_PRINTSCREEN("Start", -1, 20, FONT_SCREENBRIGHTLARGE, 10);
AI_PRINTSCREEN("Neues Spiel!", -1, 23, FONT_SCREENBRIGHTLARGE, 11);
};
};
B_MOD_VERSION is called at the end of INIT_* function, such as INIT_NEWWORLD.
Here VERSION_CHECK_13 is false, due to been not yet initialized.
VERSION_CHECK_13 will be set to true later by DIA_XARDAS_HELLO_INFO dialog.
It appears, that mod expects dialog to run ahead of INIT_* calls.
AlexJakeGreen
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededinvalidThis doesn't seem rightThis doesn't seem rightmod