mirror of https://github.com/stella-emu/stella.git
reordered OptionsDialog to match next release
updated docs accordingly
This commit is contained in:
parent
2cb83a7d80
commit
9d72ae2c4e
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
@ -2759,13 +2759,15 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<p><b>Audit ROMs</b> dialog:</p>
|
<br>
|
||||||
|
<p><b>Developer Settings</b> dialog:</p>
|
||||||
<table border="5" cellpadding="2" frame="box" rules="none">
|
<table border="5" cellpadding="2" frame="box" rules="none">
|
||||||
<tr>
|
<tr>
|
||||||
<td><img src="graphics/romaudit.png"></td>
|
<td><img src="graphics/options_developer.png"></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td valign="top"><br>This dialog is described in further detail in
|
<td valign="top"><br>This tab is described in further detail in
|
||||||
<b>Advanced Configuration - <a href="#ROMAudit">ROM Audit Mode</a></b>.</td>
|
<b>Advanced Configuration - <a href="#Debugger">Developer Options/Integrated Debugger</a></b>.</td>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
|
@ -2779,18 +2781,17 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<p><b>Developer Settings</b> dialog:</p>
|
<p><b>Audit ROMs</b> dialog:</p>
|
||||||
<table border="5" cellpadding="2" frame="box" rules="none">
|
<table border="5" cellpadding="2" frame="box" rules="none">
|
||||||
<tr>
|
<tr>
|
||||||
<td><img src="graphics/options_developer.png"></td>
|
<td><img src="graphics/romaudit.png"></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td valign="top"><br>This tab is described in further detail in
|
<td valign="top"><br>This dialog is described in further detail in
|
||||||
<b>Advanced Configuration - <a href="#Debugger">Developer Options/Integrated Debugger</a></b>.</td>
|
<b>Advanced Configuration - <a href="#ROMAudit">ROM Audit Mode</a></b>.</td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<br>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2><b><a name="Remapping">Event Remapping/Input Devices</a></b></h2>
|
<h2><b><a name="Remapping">Event Remapping/Input Devices</a></b></h2>
|
||||||
|
|
|
@ -91,8 +91,8 @@ OptionsDialog::OptionsDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
b = ADD_OD_BUTTON("Config Paths" + ELLIPSIS, kCfgPathsCmd);
|
b = ADD_OD_BUTTON("Config Paths" + ELLIPSIS, kCfgPathsCmd);
|
||||||
wid.push_back(b);
|
wid.push_back(b);
|
||||||
|
|
||||||
myRomAuditButton = ADD_OD_BUTTON("Audit ROMs" + ELLIPSIS, kAuditCmd);
|
b = ADD_OD_BUTTON("Developer Settings" + ELLIPSIS, kDevelopCmd);
|
||||||
wid.push_back(myRomAuditButton);
|
wid.push_back(b);
|
||||||
|
|
||||||
// Move to second column
|
// Move to second column
|
||||||
xoffset += buttonWidth + 10; yoffset = 10;
|
xoffset += buttonWidth + 10; yoffset = 10;
|
||||||
|
@ -106,10 +106,10 @@ OptionsDialog::OptionsDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
#endif
|
#endif
|
||||||
wid.push_back(myCheatCodeButton);
|
wid.push_back(myCheatCodeButton);
|
||||||
|
|
||||||
b = ADD_OD_BUTTON("System Logs" + ELLIPSIS, kLoggerCmd);
|
myRomAuditButton = ADD_OD_BUTTON("Audit ROMs" + ELLIPSIS, kAuditCmd);
|
||||||
wid.push_back(b);
|
wid.push_back(myRomAuditButton);
|
||||||
|
|
||||||
b = ADD_OD_BUTTON("Developer Settings" + ELLIPSIS, kDevelopCmd);
|
b = ADD_OD_BUTTON("System Logs" + ELLIPSIS, kLoggerCmd);
|
||||||
wid.push_back(b);
|
wid.push_back(b);
|
||||||
|
|
||||||
b = ADD_OD_BUTTON("Help" + ELLIPSIS, kHelpCmd);
|
b = ADD_OD_BUTTON("Help" + ELLIPSIS, kHelpCmd);
|
||||||
|
|
Loading…
Reference in New Issue