summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/mainwindow.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-01 20:56:38 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-01 20:56:38 +1000
commitf04a3f1b9d90bc6beafc4e58c3f70bd18cab313d (patch)
tree82dd7b71c46acd8387a5b70886435f5d2e73eff9 /src/osd/modules/debugger/qt/mainwindow.cpp
parent15e7be7ac8e4127e9fc0f9b5c248f4a73ba85703 (diff)
Fix Qt debugger
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.cpp')
-rw-r--r--src/osd/modules/debugger/qt/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/qt/mainwindow.cpp b/src/osd/modules/debugger/qt/mainwindow.cpp
index 5fbf77962ae..2ed5bcb0834 100644
--- a/src/osd/modules/debugger/qt/mainwindow.cpp
+++ b/src/osd/modules/debugger/qt/mainwindow.cpp
@@ -357,7 +357,7 @@ void MainWindow::mountImage(bool changedTo)
QDir::currentPath(),
tr("All files (*.*)"));
- if (img->load(filename.toUtf8().data()) != IMAGE_INIT_PASS)
+ if (img->load(filename.toUtf8().data()) != image_init_result::PASS)
{
m_machine->debugger().console().printf("Image could not be mounted.\n");
refreshAll();