New name. Minor corrections. Includes PONG.

This commit is contained in:
2017-02-03 18:59:47 +01:00
parent fa4abcbf2c
commit 88c0288931
13 changed files with 222 additions and 35 deletions

View File

@@ -79,6 +79,7 @@ static void int_to_string(int value, char* label) {
while (value > 0) {
label[i] = 48 + (value % 10);
value = value / 10;
i--;
}
}