Declare gfx3d_ClearStack() properly in a header and include

the header where needed.
This commit is contained in:
riccardom 2009-09-16 19:25:56 +00:00
parent cc94f7abf8
commit 2be3bc944c
2 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@
#include "mem.h"
#include "MMU.h"
#include "NDSSystem.h"
#include "gfx3d.h"
// ========================================================= IPC FIFO
IPC_FIFO ipc_fifo[2]; // 0 - ARM9
@ -313,7 +314,6 @@ BOOL GFX_PIPErecv(u8 *cmd, u32 *param)
return FALSE;
}
extern void gfx3d_ClearStack();
void GFX_FIFOcnt(u32 val)
{
u32 gxstat = T1ReadLong(MMU.MMU_MEM[ARMCPU_ARM9][0x40], 0x600);

View File

@ -351,4 +351,5 @@ extern SFORMAT SF_GFX3D[];
void gfx3d_savestate(EMUFILE* os);
bool gfx3d_loadstate(EMUFILE* is, int size);
void gfx3d_ClearStack();
#endif