doc: Update HelpPanelFloppy with new help text for save button

Enhanced the help text in `HelpPanelFloppy` to include information about the "Save config for disk" button.
This commit is contained in:
Dimitris Panokostas 2025-01-06 08:01:37 +01:00
parent 25e3cc295d
commit 359e8e73ee
No known key found for this signature in database
GPG Key ID: 330156A68E9E0929

View File

@ -727,5 +727,8 @@ bool HelpPanelFloppy(std::vector<std::string>& helptext)
helptext.emplace_back(" ");
helptext.emplace_back(R"(You can also use the "Create 3.5" DD disk" and "Create 3.5" HD disk" buttons, to make)");
helptext.emplace_back("a new and empty disk image, for use with the emulator.");
helptext.emplace_back(" ");
helptext.emplace_back("The \"Save config for disk\" button will save the current configuration to a file with");
helptext.emplace_back("the same name as the disk image file.");
return true;
}