From: Brendan Hansen Date: Wed, 24 Nov 2021 21:05:36 +0000 (-0600) Subject: forgot to test the message X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=8709e77a9dcf03a3986d640b59ce0cbe389db05f;p=heartbreak.git forgot to test the message --- diff --git a/tests/snake.onyx b/tests/snake.onyx index 23788e3..7a3d48c 100644 --- a/tests/snake.onyx +++ b/tests/snake.onyx @@ -173,7 +173,8 @@ draw :: () { message := "You Lost!"; message_width := hb.graphics.getTextWidth(message); - hb.graphics.print(title, (~~ww - message_width) / 2, 100); + hb.graphics.setColor(1, 1, 1); + hb.graphics.print(message, (~~ww - message_width) / 2, 100); } } }