some more endian fixes. runs on my mac now as well

svn-id: r7124
This commit is contained in:
Oliver Kiehl
2003-04-26 09:43:48 +00:00
parent 2d1e313018
commit cfaee32474
2 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -409,7 +409,7 @@ void SkyDebug::script(uint32 command, uint16 *scriptData) {
int i;
printf("SCRIPT: %s", opcodes[command]);
for (i = 0; i < opcode_par[command]; i++)
printf(" %d", *(scriptData + i));
printf(" %d", READ_LE_UINT16(scriptData + i));
printf("\n");
}