graphicscommand: Fix debug messages

This commit is contained in:
Hajime Hoshi 2020-04-08 13:48:22 +09:00
parent f0c2c0e8e9
commit 3437f35444

View File

@ -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.