Replaced loadShort/saveShort functions with applicable endian macros

svn-id: r41097
This commit is contained in:
Paul Gilbert 2009-06-01 09:09:44 +00:00
parent 5bb449b2bf
commit 2abbcd54a4
4 changed files with 3 additions and 13 deletions

View file

@ -112,7 +112,7 @@ int16 Op_Exec(void) {
ptr2 = ptr;
for (i = 0; i < numOfArgToPop; i++) {
saveShort(ptr2, popTable[i]);
WRITE_BE_UINT16(ptr2, popTable[i]);
ptr2 += 2;
}