- Joined
- Jun 27, 2014
- Messages
- 927
- Reaction score
- 1,225
- Trophies
- 0
- Age
- 54
- Website
- www.albertosonic.com
- XP
- 1,416
- Country

You're welcome!
- Some code is taken from AlbertoSONIC! Thanks
Anyway, if you want to clean the screen, you can use:
-To clear the bottom screen:
Code:
screenBottom = gfxGetFramebuffer(GFX_BOTTOM, GFX_BOTTOM, NULL, NULL);
clearScreen(screenBottom, GFX_BOTTOM);
-and for the top one:
Code:
screenTopLeft = gfxGetFramebuffer(GFX_TOP, GFX_LEFT, NULL, NULL);
screenTopRight = gfxGetFramebuffer(GFX_TOP, GFX_LEFT, NULL, NULL);
clearScreen(screenTopLeft, GFX_LEFT);
clearScreen(screenTopRight, GFX_LEFT);
But as far as i know it cleans everything you can see on the screen... Not some specific things only...









