You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 text was updated successfully, but these errors were encountered: