mirror of https://github.com/stella-emu/stella.git
two minor bug fixes
This commit is contained in:
parent
eeb1491efd
commit
dfca521bf9
|
@ -63,7 +63,7 @@ DebuggerDialog::DebuggerDialog(OSystem& osystem, DialogContainer& parent,
|
|||
// Inform the TIA output widget about its associated zoom widget
|
||||
myTiaOutput->setZoomWidget(myTiaZoom);
|
||||
|
||||
myOptions = make_unique<OptionsDialog>(osystem, parent, this, w, h, true);
|
||||
myOptions = make_unique<OptionsDialog>(osystem, parent, this, w, h, false);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -959,7 +959,10 @@ void DeveloperDialog::handleTimeMachine()
|
|||
|
||||
myStateIntervalWidget->setEnabled(enable);
|
||||
|
||||
myStateHorizonWidget->setEnabled(enable);
|
||||
uInt32 size = myStateSizeWidget->getValue();
|
||||
uInt32 uncompressed = myUncompressedWidget->getValue();
|
||||
|
||||
myStateHorizonWidget->setEnabled(enable && size > uncompressed);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue