[CHG] GRRLIB_FillScreen is now using GX_SetCopyClear instead of calling GRRLIB_Rectangle

This commit is contained in:
Crayon2000 2009-11-06 23:43:55 +00:00
parent 2e8876f899
commit 3aa0b23d8f

View file

@ -31,9 +31,8 @@ THE SOFTWARE.
*/ */
INLINE INLINE
void GRRLIB_FillScreen (const u32 color) { void GRRLIB_FillScreen (const u32 color) {
GRRLIB_Rectangle(-40, -40, GX_SetCopyClear((GXColor){ R(color), G(color), B(color), 0xFF },
rmode->fbWidth +80, rmode->xfbHeight +80, GX_MAX_Z24);
color, 1);
} }
/** /**