We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaaed88 commit b91fe7eCopy full SHA for b91fe7e
src/usr/local/src/logo.cpp
@@ -7,19 +7,9 @@
7
#include <math.h>
8
#include <graphics.h>
9
10
-const int BUSY_WAIT_FRAMECOUNTER = 2e7;
11
-
12
const int WINDOW_HEIGHT = GRAPHICS_MAX_HEIGHT;
13
const int WINDOW_WIDTH = GRAPHICS_MAX_WIDTH;
14
15
-char message_buffer[320];
16
17
-void frame_wait() {
18
- // busy wait
19
- volatile int counter = BUSY_WAIT_FRAMECOUNTER;
20
- while (counter--);
21
-}
22
23
std::vector<std::string> split(std::string &str) {
24
std::vector<std::string> rv;
25
std::size_t len = str.length();
0 commit comments