aboutsummaryrefslogtreecommitdiff
path: root/pkg/pointer
diff options
context:
space:
mode:
authorJulien Dessaux2021-09-24 18:16:30 +0200
committerJulien Dessaux2021-09-24 18:16:30 +0200
commit28953088077132c15dc9d1f254282bb62bd6f215 (patch)
tree9791b67d1b9f4f437a39f64e5b2fe7271a7dcb06 /pkg/pointer
parentFixed y command, stack and stack stack manipulation bugs (diff)
downloadgofunge98-28953088077132c15dc9d1f254282bb62bd6f215.tar.gz
gofunge98-28953088077132c15dc9d1f254282bb62bd6f215.tar.bz2
gofunge98-28953088077132c15dc9d1f254282bb62bd6f215.zip
Fixed line feed handling which should be treated as like newline in Unefunge-98, but it is unclear.
Diffstat (limited to 'pkg/pointer')
-rw-r--r--pkg/pointer/exec.go3
1 files changed, 0 insertions, 3 deletions
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
}