aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_gui/mainwindow.cpp')
-rw-r--r--qtmips_gui/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtmips_gui/mainwindow.cpp b/qtmips_gui/mainwindow.cpp
index 157baf4..6a507fa 100644
--- a/qtmips_gui/mainwindow.cpp
+++ b/qtmips_gui/mainwindow.cpp
@@ -48,9 +48,9 @@ void MainWindow::start() {
ndialog->show();
}
-void MainWindow::create_core(MachineConfig *config) {
+void MainWindow::create_core(machine::MachineConfig *config) {
// Create machine
- machine = new QtMipsMachine(config);
+ machine = new machine::QtMipsMachine(config);
// Create machine view
coreview = new CoreView(this, machine);
this->setCentralWidget(coreview);