Fixed system info greatest point calculation after re-reading the spec

This commit is contained in:
Julien Dessaux 2021-09-27 08:03:05 +02:00
parent 0038f88327
commit a5b4d184d4

View file

@ -230,8 +230,8 @@ func (p *Pointer) eval(c int, f *field.Field) (done bool, returnValue *int) {
// 15
p.ss.head.Push(((now.Year() - 1900) * 256 * 256) + (int(now.Month()) * 256) + now.Day())
// 14
p.ss.head.Push(lx + x + 1)
p.ss.head.Push(ly + y + 1)
p.ss.head.Push(lx - 1)
p.ss.head.Push(ly - 1)
// 13
p.ss.head.Push(x)
p.ss.head.Push(y)