strip year from display

This commit is contained in:
Peter Ferrie
2026-02-01 11:45:49 -08:00
parent a66f312b17
commit 9d9d48df66

View File

@@ -5,10 +5,11 @@ c = a.createtextfile("build\\DISPLAY.CONF")
while (!b.atendofstream)
{
d = b.readline()
e = d.indexOf("/")
if (d.indexOf("[eof]") >= 0)
if (e > -1)
{
break
d = d.substr(0, e)
}
if (d.indexOf("=") == -1)