Loading wator.go +1 −2 Original line number Diff line number Diff line Loading @@ -101,8 +101,7 @@ func (w *Wator) Display() error { for y := 0; y < w.Height; y++ { for x := 0; x < w.Width; x++ { p := position{x: x, y: y} s := fmt.Sprintf("%s", w.current.Cells[p].String()) sb.WriteString(s) sb.WriteString(w.current.Cells[p].String()) } sb.WriteString("\n") } Loading Loading
wator.go +1 −2 Original line number Diff line number Diff line Loading @@ -101,8 +101,7 @@ func (w *Wator) Display() error { for y := 0; y < w.Height; y++ { for x := 0; x < w.Width; x++ { p := position{x: x, y: y} s := fmt.Sprintf("%s", w.current.Cells[p].String()) sb.WriteString(s) sb.WriteString(w.current.Cells[p].String()) } sb.WriteString("\n") } Loading