From 0380d2e781dbe418e4f8a23a204c112d692a7266 Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Sun, 15 Jan 2017 19:59:09 +0100 Subject: [PATCH] nrf5/examples: Adding a extra global variable to the game which breaks the game execution. --- nrf5/examples/game2048.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nrf5/examples/game2048.py b/nrf5/examples/game2048.py index 2533dc06de..4bf5b170a3 100644 --- a/nrf5/examples/game2048.py +++ b/nrf5/examples/game2048.py @@ -87,6 +87,10 @@ font_2048 = [ "xxx x x x" ] +font_4096 = [ + "x" +] + DIR_UP = const(0x1) DIR_DOWN = const(0x2) DIR_LEFT = const(0x3)