Task:
The lcd::print function for llemu.cpp/hpp is not printing anything. An example of this can be seen with the default main.cpp:
...
while (true) {
pros::lcd::print(0, "%d %d %d", (pros::lcd::read_buttons() & LCD_BTN_LEFT) >> 2,
(pros::lcd::read_buttons() & LCD_BTN_CENTER) >> 1,
(pros::lcd::read_buttons() & LCD_BTN_RIGHT) >> 0);
...
This should print the states of the 3 buttons as 0 or 1 on the first line, but currently seems to print nothing. It should look like:

Beta Server Link:
https://discordapp.com/channels/1025259843763847229/1029666535553384498/1071536722996887602
Testing:
This can be tested using the default main.cpp. The button states should be printed at the top, and change when the buttons are pressed.
Task:
The lcd::print function for llemu.cpp/hpp is not printing anything. An example of this can be seen with the default main.cpp:
This should print the states of the 3 buttons as 0 or 1 on the first line, but currently seems to print nothing. It should look like:

Beta Server Link:
https://discordapp.com/channels/1025259843763847229/1029666535553384498/1071536722996887602
Testing:
This can be tested using the default main.cpp. The button states should be printed at the top, and change when the buttons are pressed.