remove comments

This commit is contained in:
array-in-a-matrix 2024-02-20 18:32:11 -05:00
parent 4be15cfd9e
commit ad058fbe93

3
main.c
View file

@ -124,11 +124,10 @@ int main(int argc, char **argv)
OSScreenPutPixelEx(SCREEN_DRC, gamepadTouchScreen.x - 1, gamepadTouchScreen.y + 1, penColor);
OSScreenPutPixelEx(SCREEN_DRC, gamepadTouchScreen.x + 1, gamepadTouchScreen.y - 1, penColor);
}
/* Flush all caches - read the tutorial, please! */
DCFlushRange(tvBuffer, tvBufferSize);
DCFlushRange(drcBuffer, drcBufferSize);
/* Flip buffers - the text is now on screen! Flipping is kinda like
committing your graphics changes. */
OSScreenFlipBuffersEx(SCREEN_TV);
OSScreenFlipBuffersEx(SCREEN_DRC);