diff --git a/docs/graphics/options_gameinfo_cartridge.png b/docs/graphics/options_gameinfo_cartridge.png index b90761623..da6f4fdc4 100644 Binary files a/docs/graphics/options_gameinfo_cartridge.png and b/docs/graphics/options_gameinfo_cartridge.png differ diff --git a/docs/graphics/options_gameinfo_console.png b/docs/graphics/options_gameinfo_console.png index e3aee16e5..83d4b04b1 100644 Binary files a/docs/graphics/options_gameinfo_console.png and b/docs/graphics/options_gameinfo_console.png differ diff --git a/docs/graphics/options_gameinfo_controller.png b/docs/graphics/options_gameinfo_controller.png index 2714e5407..6b8740424 100644 Binary files a/docs/graphics/options_gameinfo_controller.png and b/docs/graphics/options_gameinfo_controller.png differ diff --git a/docs/graphics/options_gameinfo_emulation.png b/docs/graphics/options_gameinfo_emulation.png index 55c1e6893..8da3b8c42 100644 Binary files a/docs/graphics/options_gameinfo_emulation.png and b/docs/graphics/options_gameinfo_emulation.png differ diff --git a/docs/graphics/options_gameinfo_highscores.png b/docs/graphics/options_gameinfo_highscores.png index 6d18323e5..9a6e7f1d2 100644 Binary files a/docs/graphics/options_gameinfo_highscores.png and b/docs/graphics/options_gameinfo_highscores.png differ diff --git a/docs/index.html b/docs/index.html index f679feab6..d6cfdb001 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5003,11 +5003,11 @@ Ms Pac-Man (Stella extended codes):

The buttons at the bottom of the dialogs work as follows:

The name of the properties file will depend on the version of Stella, as follows:

diff --git a/src/gui/GameInfoDialog.cxx b/src/gui/GameInfoDialog.cxx index 90628534c..40c1288d8 100644 --- a/src/gui/GameInfoDialog.cxx +++ b/src/gui/GameInfoDialog.cxx @@ -92,9 +92,9 @@ GameInfoDialog::GameInfoDialog( myTab->setActiveTab(0); // Add Defaults, OK and Cancel buttons - addDefaultsExtraOKCancelBGroup(wid, font, "Save", kSavePressed); - _extraWidget->setToolTip("Save the current ROM's properties in a\n" - "separate file in the default directory."); + addDefaultsExtraOKCancelBGroup(wid, font, "Export", kExportPressed); + _extraWidget->setToolTip("Export the current ROM's properties\n" + "into the default directory."); addBGroupToFocusList(wid); } @@ -1341,7 +1341,7 @@ void GameInfoDialog::setAddressVal(EditTextWidget* addressWidget, EditTextWidget valWidget->setText(""); } -void GameInfoDialog::saveCurrentPropertiesToDisk() +void GameInfoDialog::exportCurrentPropertiesToDisk() { saveProperties(); stringstream out; @@ -1353,12 +1353,12 @@ void GameInfoDialog::saveCurrentPropertiesToDisk() propfile /= myGameFile.getNameWithExt(".pro"); propfile.write(out); - instance().frameBuffer().showTextMessage("Properties saved to " + + instance().frameBuffer().showTextMessage("Properties exported to " + propfile.getShortPath()); } catch(...) { - instance().frameBuffer().showTextMessage("Error saving properties"); + instance().frameBuffer().showTextMessage("Error exporting properties"); } } @@ -1377,8 +1377,8 @@ void GameInfoDialog::handleCommand(CommandSender* sender, int cmd, setDefaults(); break; - case kSavePressed: - saveCurrentPropertiesToDisk(); + case kExportPressed: + exportCurrentPropertiesToDisk(); break; case TabWidget::kTabChangedCmd: diff --git a/src/gui/GameInfoDialog.hxx b/src/gui/GameInfoDialog.hxx index 2e9a92841..cb2d4c0c7 100644 --- a/src/gui/GameInfoDialog.hxx +++ b/src/gui/GameInfoDialog.hxx @@ -180,7 +180,7 @@ class GameInfoDialog : public Dialog, public CommandSender kHiScoresChanged = 'HSch', kPXCenterChanged = 'Pxch', kPYCenterChanged = 'Pych', - kSavePressed = 'GIsp' + kExportPressed = 'GIsp' }; // Game properties for currently loaded ROM