cmd/gogio: use a more difficult color for end-to-end tests

RGB 0xff0000 is too easy to get right by accident.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-10-30 14:56:37 +01:00
parent d74be30a90
commit dc7af8fba3
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ func main() {
}
func loop(w *app.Window) error {
background := color.RGBA{255, 0, 0, 255}
background := color.RGBA{R: 0xde, G: 0xad, B: 0xbe, A: 0xff}
ops := new(op.Ops)
for {
e := <-w.Events()