doc: improve help text in WHDLoad panel (#fixes 1583)

This commit is contained in:
Dimitris Panokostas 2025-01-11 13:52:51 +01:00
parent 08d809e49e
commit 82c3099d44
No known key found for this signature in database
GPG Key ID: 330156A68E9E0929

View File

@ -517,5 +517,12 @@ bool HelpPanelWHDLoad(std::vector<std::string>& helptext)
helptext.emplace_back("Config Delay: Delay in seconds before starting the game.");
helptext.emplace_back("Write Cache: Enable Write cache before starting the game.");
helptext.emplace_back("Quit on Exit: Quit Amiberry when the game exits.");
helptext.emplace_back(" ");
helptext.emplace_back("Note: You must load the same WHDLoad .lha file, to be able to change");
helptext.emplace_back("the custom/global settings here, when an associated .uae config file");
helptext.emplace_back("is used. You cannot change these settings by loading the .uae config");
helptext.emplace_back("file alone - you must first load the .lha file itself, change any");
helptext.emplace_back("settings, and then save the .uae config file.");
helptext.emplace_back(" ");
return true;
}