New name. Minor corrections. Includes PONG.
This commit is contained in:
@@ -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--;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user