mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[CHG] GRRLIB_FillScreen is now using GX_SetCopyClear instead of calling GRRLIB_Rectangle
This commit is contained in:
parent
2e8876f899
commit
3aa0b23d8f
1 changed files with 2 additions and 3 deletions
|
@ -31,9 +31,8 @@ THE SOFTWARE.
|
|||
*/
|
||||
INLINE
|
||||
void GRRLIB_FillScreen (const u32 color) {
|
||||
GRRLIB_Rectangle(-40, -40,
|
||||
rmode->fbWidth +80, rmode->xfbHeight +80,
|
||||
color, 1);
|
||||
GX_SetCopyClear((GXColor){ R(color), G(color), B(color), 0xFF },
|
||||
GX_MAX_Z24);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue