mirror of
https://github.com/LIV2/amiberry.git
synced 2025-12-05 22:22:44 +00:00
refactor: Update file dialog text for save state operations
Modified the text in the file selection dialogs in `amiberry_gui.cpp`: - Changed "Select save state file" to "Load a save state file" for loading operations. - Changed "Select save state file" to "Save a save state file" for saving operations. These changes provide clearer instructions to the user.
This commit is contained in:
parent
066aec48b9
commit
6b2d24047e
@ -818,7 +818,7 @@ void disk_selection(const int shortcut, uae_prefs* prefs)
|
||||
TCHAR tmp[MAX_DPATH];
|
||||
get_savestate_path(tmp, sizeof tmp / sizeof(TCHAR));
|
||||
|
||||
const std::string selected = SelectFile("Select save state file", tmp, statefile_filter);
|
||||
const std::string selected = SelectFile("Load a save state file", tmp, statefile_filter);
|
||||
if (!selected.empty())
|
||||
{
|
||||
_tcscpy(savestate_fname, selected.c_str());
|
||||
@ -835,7 +835,7 @@ void disk_selection(const int shortcut, uae_prefs* prefs)
|
||||
TCHAR tmp[MAX_DPATH];
|
||||
get_savestate_path(tmp, sizeof tmp / sizeof(TCHAR));
|
||||
|
||||
std::string selected = SelectFile("Select save state file", tmp, statefile_filter, true);
|
||||
std::string selected = SelectFile("Save a save state file", tmp, statefile_filter, true);
|
||||
if (!selected.empty())
|
||||
{
|
||||
// ensure the selected filename ends with .uss
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user