Fix non-dev builds.

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@286 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
arcum42 2008-11-03 21:01:55 +00:00 committed by Gregory Hainaut
parent f23db9a04a
commit a4cd015be7
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ __forceinline void GSVSYNC(void) {
#else #else
__forceinline void GSGIFTRANSFER1(const u32 *pMem, u32 addr) { __forceinline void GSGIFTRANSFER1(u32 *pMem, u32 addr) {
GSgifTransfer1(pMem, addr); GSgifTransfer1(pMem, addr);
} }
@ -102,7 +102,7 @@ __forceinline void GSGIFTRANSFER2(u32 *pMem, u32 size) {
GSgifTransfer2(pMem, size); GSgifTransfer2(pMem, size);
} }
__forceinline void GSGIFTRANSFER3(const u32 *pMem, u32 size) { __forceinline void GSGIFTRANSFER3(u32 *pMem, u32 size) {
GSgifTransfer3(pMem, size); GSgifTransfer3(pMem, size);
} }