mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
4cccc7a3b1
commit
5cb169be42
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue