From 54882b57b911fc8097edb55325e6bf7cb21af767 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 2 May 2021 11:37:21 -0400 Subject: [PATCH] Allow mainwindow to send Fortran debugging output to the shell. --- map65/mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index 5256d0d6d..53eec2950 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -1417,6 +1417,11 @@ void MainWindow::readFromStdout() //readFromStdout m_bandmapText += q; } } + if(t.indexOf("#") >= 0) { + int n=t.size(); + qDebug() << t.mid(1,n-3).trimmed(); + } + } }