diff --git a/internal/graphicscommand/command.go b/internal/graphicscommand/command.go index 0de7b3ec8..42e4efbd3 100644 --- a/internal/graphicscommand/command.go +++ b/internal/graphicscommand/command.go @@ -361,7 +361,7 @@ func (c *drawTrianglesCommand) String() string { src += " (screen)" } - return fmt.Sprintf("draw-triangles: dst: %s <- src: %s, nindices: %d, colorm: %v, mode %s, filter: %s, address: %s", dst, src, c.nindices, c.color, mode, filter, address) + return fmt.Sprintf("draw-triangles: dst: %s <- src: %s, num of indices: %d, colorm: %v, mode %s, filter: %s, address: %s", dst, src, c.nindices, c.color, mode, filter, address) } // Exec executes the drawTrianglesCommand.