Skip to content

Commit

Permalink
fix: vice snapshots fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoquesada committed Mar 30, 2017
1 parent b8d76eb commit ffb9c35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/importvicedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void ImportVICEDialog::on_spinBoxScreenRAM_editingFinished()
} else {
// normalize number, in case it was edited manually
int m = oldvalue / 1024;
int newvalue = m * 1024;
newvalue = m * 1024;

if (newvalue != oldvalue)
ui->spinBoxScreenRAM->setValue(newvalue);
Expand Down Expand Up @@ -255,6 +255,7 @@ void ImportVICEDialog::updateWidgets()
ui->checkBoxMulticolor,
ui->checkBoxGuessColors,
ui->checkBoxDisplayGrid,
ui->checkBoxInvalidAddresses,
ui->spinBoxCharset,
ui->spinBoxScreenRAM,
ui->pushButton_import
Expand Down

0 comments on commit ffb9c35

Please sign in to comment.