Skip to content

Commit

Permalink
enhancement: Updated help text in Savestates GUI panel (fixes #1557)
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Dec 28, 2024
1 parent fbd0cd0 commit e833f81
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/osdep/gui/PanelSavestate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,16 @@ void RefreshPanelSavestate()
bool HelpPanelSavestate(std::vector<std::string>& helptext)
{
helptext.clear();
helptext.emplace_back("Savestates are stored with the name of the disk in drive DF0, or if no");
helptext.emplace_back("disk is inserted, the name of the last loaded .uae config.");
helptext.emplace_back("Savestates can be used with floppy disk image files, whdload.lha files, and with HDD");
helptext.emplace_back("emulation setups.");
helptext.emplace_back(" ");
helptext.emplace_back("When you hold left shoulder button and press 'l' during emulation, ");
helptext.emplace_back("the state of the last active number will be loaded. Hold left shoulder ");
helptext.emplace_back("button and press 's' to save the current state in the last active slot.");
helptext.emplace_back("Note: Savestates will not work when emulating CD32/CDTV machine types, and will likely");
helptext.emplace_back("fail when the JIT/PPC/RTG emulation options are enabled.");
helptext.emplace_back(" ");
helptext.emplace_back("Savestates are stored in a .uss file, with the name being that of the currently loaded");
helptext.emplace_back("floppy disk image or whdload.lha file, or the name of the loaded HDD .uae config.");
helptext.emplace_back(" ");
helptext.emplace_back("For more information about Savestates, please read the related Amiberry Wiki page.");
helptext.emplace_back(" ");
helptext.emplace_back("Note: Savestates may or may not work with HDDs, JIT or RTG. They were");
helptext.emplace_back("designed to work with floppy disk images.");
return true;
}

0 comments on commit e833f81

Please sign in to comment.