From 28953088077132c15dc9d1f254282bb62bd6f215 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 24 Sep 2021 18:16:30 +0200 Subject: Fixed line feed handling which should be treated as like newline in Unefunge-98, but it is unclear. --- pkg/pointer/exec.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'pkg/pointer') diff --git a/pkg/pointer/exec.go b/pkg/pointer/exec.go index 0590482..61b415f 100644 --- a/pkg/pointer/exec.go +++ b/pkg/pointer/exec.go @@ -296,9 +296,6 @@ func (p *Pointer) eval(c int, f *field.Field) (done bool, returnValue *int) { log.Fatalf("Non implemented instruction code %d : %c", c, c) case 't': log.Fatalf("Non implemented instruction code %d : %c", c, c) - case 12: - // Trifunge function that resets in befunge - p.x, p.y = 0, 0 default: handled = false } -- cgit v1.2.3