The Tetris example does not build in Arduino as the self-defined functions as make_block() are defined after their calls. Rearranging fixes the issue. I really wonder as this is C++ standard to have the function signature always defined previous to their call, isn't it? Same for Flappy bird.
The Tetris example does not build in Arduino as the self-defined functions as
make_block()
are defined after their calls. Rearranging fixes the issue. I really wonder as this is C++ standard to have the function signature always defined previous to their call, isn't it? Same for Flappy bird.