1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00

got rid of blank error msg when program halts normally

This commit is contained in:
Steven Hugg 2021-03-02 15:51:27 -06:00
parent d3cac31c2f
commit f3ed9191ee

View File

@ -1106,6 +1106,7 @@ function showErrorAlert(errors : WorkerError[]) {
}
function showExceptionAsError(err, msg:string) {
if (msg != null) {
var werr : WorkerError = {msg:msg, line:0};
if (err instanceof EmuHalt && err.$loc) {
werr = Object.create(err.$loc);
@ -1114,6 +1115,7 @@ function showExceptionAsError(err, msg:string) {
projectWindows.refresh(false);
}
showErrorAlert([werr]);
}
}
var measureTimeStart : Date = new Date();