From 1b77ec878fce179fc06b82d2c6cc394401537f67 Mon Sep 17 00:00:00 2001 From: Joshua Saxby <Joshua2.Saxby@live.uwe.ac.uk> Date: Sun, 9 Feb 2020 18:36:04 +0000 Subject: [PATCH] Reduced block descent speed for the time being Because it's pretty hard to play without this slowing down. --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 8ba3929..801e99e 100755 --- a/source/main.cpp +++ b/source/main.cpp @@ -331,7 +331,7 @@ void start_new_game() { MICROBIT_ID_BUTTON_B, MICROBIT_BUTTON_EVT_CLICK, b_button_pressed ); unsigned long stopwatch = UBIT.systemTime(); - unsigned long move_speed = 350; // move down one block every 350ms + unsigned long move_speed = 500; // move down one block every 500ms // this is the main game loop do { // XXX: for demo, keep sending random Blocks until stacked up to ceiling -- GitLab