From f04a3f1b9d90bc6beafc4e58c3f70bd18cab313d Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Mon, 1 Aug 2016 20:56:38 +1000 Subject: [PATCH] Fix Qt debugger --- src/osd/modules/debugger/qt/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();