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:
Dimitris Panokostas 2025-01-08 17:06:54 +01:00
parent 066aec48b9
commit 6b2d24047e
No known key found for this signature in database
GPG Key ID: 330156A68E9E0929

View File

@ -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