Fixed fatal error ("OP_BLOCK_COPY out of range!") when using qvms on Mac OS X powerpc (see r2031 and r2034).

This commit is contained in:
Zack Middleton 2012-06-29 18:35:55 +00:00
parent 3b09685b42
commit b340c9d835

View file

@ -311,7 +311,7 @@ typedef struct VM_Data {
// function pointers, no use to waste registers for them
long int (* AsmCall)( int, int );
void (* BlockCopy )( unsigned int, unsigned int, unsigned int );
void (* BlockCopy )( unsigned int, unsigned int, size_t );
// instruction pointers, rarely used so don't waste register
ppc_instruction_t *iPointers;