new gxFIFO:

- fix pipe clear;
This commit is contained in:
mtabachenko 2009-07-31 17:04:02 +00:00
parent 0eaef3ea53
commit 27ce7acf63
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ u16 FORCEINLINE GFX_FIFOgetSize()
void GFX_PIPEclear() void GFX_PIPEclear()
{ {
gxFIFO.head = 0; gxPIPE.head = 0;
gxFIFO.tail = 0; gxPIPE.tail = 0;
gxPIPE.size = 0; gxPIPE.size = 0;
} }