Compiling data now names each file being compiled

This commit is contained in:
Maruno17
2020-09-12 18:31:36 +01:00
parent 6ac7aca902
commit 0fc544adb8
2 changed files with 2 additions and 2 deletions

View File

@@ -197,7 +197,7 @@ def pbEachFileSectionEx(f)
end
lineno += 1
Graphics.update if lineno%500==0
Win32API.SetWindowText(_INTL("Processing line {1}",lineno)) if lineno%50==0
Win32API.SetWindowText(_INTL("Processing {1} line {2}",FileLineData.file,lineno)) if lineno%50==0
}
yield lastsection,sectionname if havesection
end

View File

@@ -1187,7 +1187,7 @@ def pbCompileMachines
end
lineno += 1
Graphics.update if lineno%50==0
Win32API.SetWindowText(_INTL("Processing TM line {1}",lineno)) if lineno%50==0
Win32API.SetWindowText(_INTL("Processing {1} line {2}",FileLineData.file,lineno)) if lineno%50==0
}
f.close
elsif safeExists?("Data/tmRS.dat")