mirror of https://github.com/stella-emu/stella.git
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:
parent
16be8f8a8e
commit
6ea7f60c90
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue