two minor bug fixes

This commit is contained in:
thrust26 2017-12-17 12:24:16 +01:00
parent eeb1491efd
commit dfca521bf9
2 changed files with 5 additions and 2 deletions

View File

@ -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);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -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);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -