From b7d75233dbcc290f51389e2ebe1046f9d7fe7340 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 4 May 2020 07:37:26 -0800 Subject: [PATCH] formatting --- pong.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pong.go b/pong.go index 940d470..69c0851 100644 --- a/pong.go +++ b/pong.go @@ -6,9 +6,9 @@ import ( ) var ( - winWidth = 800 + winWidth = 800 winHeight = 600 - state = start + state = start ) func main() { @@ -80,5 +80,3 @@ func main() { gameLoop(pixels, player1, player2, ball, renderer, tex, keyState) } - -