* Fix to the VM interpreter on the linux ppc dedicated server

This commit is contained in:
Tim Angus 2005-10-29 22:06:43 +00:00
parent c5bdb034f2
commit 63fdc74843
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static char *opnames[256] = {
#define loadWord(addr) __lwbrx(addr,0)
#endif
#else
#define loadWord(addr) *((int *)addr)
#define loadWord(addr) LittleLong(*((int *)addr))
#endif
char *VM_Indent( vm_t *vm ) {