mirror of https://github.com/stella-emu/stella.git
Pressing 'Default' in "Power-on options" now saves the settings.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2807 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
d48f9e6f49
commit
b0d243fef9
|
@ -14,14 +14,14 @@
|
||||||
|
|
||||||
3.9 to 3.9.1: (August xx, 2013)
|
3.9 to 3.9.1: (August xx, 2013)
|
||||||
|
|
||||||
* Note: because of TIA changes, the state file format has changed again,
|
* Note: because of TIA/6502 changes, the state file format has changed
|
||||||
and old state files will not work with this release.
|
again, and old state files will not work with this release.
|
||||||
|
|
||||||
* Several bugfixes and improvements to the debugger:
|
* Several bugfixes and improvements to the debugger:
|
||||||
- Improved display of debugger when using larger video modes. There
|
- Improved display of debugger when using larger video modes. There
|
||||||
are now three font sizes, which are automatically selected when
|
are now three font sizes, which are automatically selected when
|
||||||
the debugger is sized accordingly. When using larger fonts, the
|
the debugger is sized accordingly. When using larger fonts, the
|
||||||
space is now used more efficiently.
|
extra space is now used more efficiently.
|
||||||
|
|
||||||
- Fixed bug in disassembly when the mirror used for the current
|
- Fixed bug in disassembly when the mirror used for the current
|
||||||
PC didn't match the mirror for the current bank. In this case,
|
PC didn't match the mirror for the current bank. In this case,
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
Thanks to Tjoppen of AtariAge for this idea and sample code.
|
Thanks to Tjoppen of AtariAge for this idea and sample code.
|
||||||
|
|
||||||
- The 'Source Address' locations for the CPU registers now show
|
- The 'Source Address' locations for the CPU registers now show
|
||||||
labels when appropriate.
|
labels where appropriate.
|
||||||
|
|
||||||
* Renamed 'Override properties' dialog (accessible from the ROM
|
* Renamed 'Override properties' dialog (accessible from the ROM
|
||||||
launcher by a right-mouse-button click) to 'Power-on options', with
|
launcher by a right-mouse-button click) to 'Power-on options', with
|
||||||
|
|
|
@ -170,7 +170,7 @@ GlobalPropsDialog::GlobalPropsDialog(GuiObject* boss, const GUI::Font& font)
|
||||||
b = new ButtonWidget(this, font, 10, _h - buttonHeight - 10,
|
b = new ButtonWidget(this, font, 10, _h - buttonHeight - 10,
|
||||||
buttonWidth, buttonHeight, "Defaults", kDefaultsCmd);
|
buttonWidth, buttonHeight, "Defaults", kDefaultsCmd);
|
||||||
wid.push_back(b);
|
wid.push_back(b);
|
||||||
addOKCancelBGroup(wid, font, "Load ROM");
|
addOKCancelBGroup(wid, font, "Load ROM", "Close");
|
||||||
|
|
||||||
addToFocusList(wid);
|
addToFocusList(wid);
|
||||||
}
|
}
|
||||||
|
@ -332,6 +332,7 @@ void GlobalPropsDialog::handleCommand(CommandSender* sender, int cmd,
|
||||||
|
|
||||||
case kDefaultsCmd:
|
case kDefaultsCmd:
|
||||||
setDefaults();
|
setDefaults();
|
||||||
|
saveConfig();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue