From 5e83f409e64864d129b15a3fdfc76d7cc8672163 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 7 Jul 2021 01:54:22 +0900 Subject: [PATCH] internal/graphicscommand: Add a missing colon to a command string --- internal/graphicscommand/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/graphicscommand/command.go b/internal/graphicscommand/command.go index 3dc137ef5..75fc096ff 100644 --- a/internal/graphicscommand/command.go +++ b/internal/graphicscommand/command.go @@ -410,7 +410,7 @@ func (c *drawTrianglesCommand) String() string { r := fmt.Sprintf("(x:%d, y:%d, width:%d, height:%d)", int(c.dstRegion.X), int(c.dstRegion.Y), int(c.dstRegion.Width), int(c.dstRegion.Height)) - return fmt.Sprintf("draw-triangles: dst: %s <- src: [%s], dst region: %s, num of indices: %d, colorm: %v, mode %s, filter: %s, address: %s, even-odd: %t", dst, strings.Join(srcstrs[:], ", "), r, c.nindices, c.color, mode, filter, address, c.evenOdd) + return fmt.Sprintf("draw-triangles: dst: %s <- src: [%s], dst region: %s, num of indices: %d, colorm: %v, mode: %s, filter: %s, address: %s, even-odd: %t", dst, strings.Join(srcstrs[:], ", "), r, c.nindices, c.color, mode, filter, address, c.evenOdd) } // Exec executes the drawTrianglesCommand.