mirror of
https://github.com/a2-4am/4cade.git
synced 2026-03-11 04:42:00 +00:00
strip year from display
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user