diff options
author | Julien Dessaux | 2022-08-15 19:24:34 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-08-16 19:24:34 +0200 |
commit | 357c54663c332aff82f539a838a930842192e5ba (patch) | |
tree | 9a7bd759aaa9c3741a14f5ee5e3d6f21807d1ce1 /src/field.zig | |
parent | Implemented the y command (diff) | |
download | zigfunge98-357c54663c332aff82f539a838a930842192e5ba.tar.gz zigfunge98-357c54663c332aff82f539a838a930842192e5ba.tar.bz2 zigfunge98-357c54663c332aff82f539a838a930842192e5ba.zip |
Fixed bugs reported by the mycology test suite
Diffstat (limited to '')
-rw-r--r-- | src/field.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/field.zig b/src/field.zig index 9a12a80..6c0e420 100644 --- a/src/field.zig +++ b/src/field.zig @@ -287,7 +287,7 @@ pub const Field = struct { } } switch (buffer[i]) { - 12 => x += 1, + 12 => continue, '\r' => { x = 0; y += 1; |