GSnull: Add a function back in.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3619 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-08-07 08:25:10 +00:00
parent 4cccc7a3b1
commit 5cb169be42
1 changed files with 8 additions and 0 deletions

View File

@ -163,6 +163,14 @@ template<int index> void _GSgifTransfer(const u32 *pMem, u32 size)
#define DO_GIF_TRANSFERS #define DO_GIF_TRANSFERS
// Obsolete. Included because it's still in GSdef.
EXPORT_C_(void) GSgifTransfer1(u32 *pMem, u32 addr)
{
#ifdef DO_GIF_TRANSFERS
_GSgifTransfer<0>((u32*)((u8*)pMem + addr), (0x4000 - addr) / 16);
#endif
}
EXPORT_C_(void) GSgifTransfer(const u32 *pMem, u32 size) EXPORT_C_(void) GSgifTransfer(const u32 *pMem, u32 size)
{ {
#ifdef DO_GIF_TRANSFERS #ifdef DO_GIF_TRANSFERS