Change default ROM launcher settings to 1000x600 and 1x ROM viewer.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2941 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2014-06-30 13:45:25 +00:00
parent 16be8f8a8e
commit 6ea7f60c90
1 changed files with 3 additions and 3 deletions

View File

@ -399,14 +399,14 @@ void UIDialog::setDefaults()
{
case 0: // Launcher options
{
uInt32 w = BSPF_min(instance().frameBuffer().desktopSize().w, (uInt32)FrameBuffer::kFBMinW);
uInt32 h = BSPF_min(instance().frameBuffer().desktopSize().h, (uInt32)FrameBuffer::kFBMinH);
uInt32 w = BSPF_min(instance().frameBuffer().desktopSize().w, 1000u);
uInt32 h = BSPF_min(instance().frameBuffer().desktopSize().h, 600u);
myLauncherWidthSlider->setValue(w);
myLauncherWidthLabel->setValue(w);
myLauncherHeightSlider->setValue(h);
myLauncherHeightLabel->setValue(h);
myLauncherFontPopup->setSelected("medium", "");
myRomViewerPopup->setSelected("0", "");
myRomViewerPopup->setSelected("1", "");
myLauncherExitPopup->setSelected("0", "");
break;
}