GUI: warn on first import of a classic module
This commit is contained in:
parent
81dccf8dcc
commit
3a0fd28165
3 changed files with 49 additions and 1 deletions
|
|
@ -650,6 +650,7 @@ enum FurnaceGUIWarnings {
|
|||
GUI_WARN_CLEAR_HISTORY,
|
||||
GUI_WARN_CV,
|
||||
GUI_WARN_RESET_CONFIG,
|
||||
GUI_WARN_IMPORT,
|
||||
GUI_WARN_GENERIC
|
||||
};
|
||||
|
||||
|
|
@ -2279,13 +2280,18 @@ class FurnaceGUI {
|
|||
struct Tutorial {
|
||||
bool introPlayed;
|
||||
bool protoWelcome;
|
||||
bool importedMOD, importedS3M, importedXM, importedIT;
|
||||
Tutorial():
|
||||
#ifdef SUPPORT_XP
|
||||
introPlayed(true),
|
||||
#else
|
||||
introPlayed(false),
|
||||
#endif
|
||||
protoWelcome(false) {
|
||||
protoWelcome(false),
|
||||
importedMOD(false),
|
||||
importedS3M(false),
|
||||
importedXM(false),
|
||||
importedIT(false) {
|
||||
}
|
||||
} tutorial;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue