| 220 | } |
| 221 | |
| 222 | void MainWindow::ramSyncPressed() { |
| 223 | if (ui->ramEdit->modifiedCount()) { |
| 224 | memcpy(mem.ram.block, ui->ramEdit->data(), 0x65800); |
| 225 | } |
| 226 | memSync(ui->ramEdit); |
| 227 | } |
| 228 | |
| 229 | void MainWindow::memSyncEdit(HexWidget *edit) { |
| 230 | if (edit == Q_NULLPTR) { |
nothing calls this directly
no test coverage detected