From a4cd015be727e78d1cadd88b78d388cde4309fab Mon Sep 17 00:00:00 2001 From: arcum42 Date: Mon, 3 Nov 2008 21:01:55 +0000 Subject: [PATCH] Fix non-dev builds. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@286 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/x86/iVUmicro.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/iVUmicro.c b/pcsx2/x86/iVUmicro.c index 568659509e..0aabfbaa72 100644 --- a/pcsx2/x86/iVUmicro.c +++ b/pcsx2/x86/iVUmicro.c @@ -94,7 +94,7 @@ __forceinline void GSVSYNC(void) { #else -__forceinline void GSGIFTRANSFER1(const u32 *pMem, u32 addr) { +__forceinline void GSGIFTRANSFER1(u32 *pMem, u32 addr) { GSgifTransfer1(pMem, addr); } @@ -102,7 +102,7 @@ __forceinline void GSGIFTRANSFER2(u32 *pMem, u32 size) { GSgifTransfer2(pMem, size); } -__forceinline void GSGIFTRANSFER3(const u32 *pMem, u32 size) { +__forceinline void GSGIFTRANSFER3(u32 *pMem, u32 size) { GSgifTransfer3(pMem, size); }