mirror of https://github.com/stella-emu/stella.git
fix #353
This commit is contained in:
parent
4ae491dd6c
commit
b940aea542
|
@ -470,7 +470,7 @@ void UIDialog::handleCommand(CommandSender* sender, int cmd, int data, int id)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void UIDialog::handleRomViewer()
|
void UIDialog::handleRomViewer()
|
||||||
{
|
{
|
||||||
//string size = myRomViewerPopup->getSelectedName();
|
int size = myRomViewerPopup->getSelected();
|
||||||
bool enable = myRomViewerPopup->getSelectedName() != "Off";
|
bool enable = myRomViewerPopup->getSelectedName() != "Off";
|
||||||
VariantList items;
|
VariantList items;
|
||||||
|
|
||||||
|
@ -485,10 +485,12 @@ void UIDialog::handleRomViewer()
|
||||||
{
|
{
|
||||||
VarList::push_back(items, "2x (1000x720)", "2");
|
VarList::push_back(items, "2x (1000x720)", "2");
|
||||||
}
|
}
|
||||||
myRomViewerPopup->addItems(items);
|
else if (size == 2)
|
||||||
|
{
|
||||||
|
myRomViewerPopup->setSelected(1);
|
||||||
|
}
|
||||||
|
|
||||||
// FIXME (remove when done) - Thomas, you can continue from here ...
|
myRomViewerPopup->addItems(items);
|
||||||
//myRomViewerPopup->setSelected("1x(640x480) ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue