Fix byte swapping warnings

This commit is contained in:
Alexander Batalov 2022-10-29 18:17:57 +03:00
parent caa8b06d4f
commit 12367acb33
1 changed files with 2 additions and 2 deletions

View File

@ -338,7 +338,7 @@ int fileReadInt32(File* stream, int* valuePtr)
return -1; return -1;
} }
*valuePtr = ((value >> 24) & 0xFF) | ((value >> 8) & 0xFF00) | ((value << 8) & 0xFF0000) | ((value << 24) & 0xFF000000); *valuePtr = ((value & 0xFF000000) >> 24) | ((value & 0xFF0000) >> 8) | ((value & 0xFF00) << 8) | ((value & 0xFF) << 24);
return 0; return 0;
} }
@ -511,7 +511,7 @@ int fileReadInt32List(File* stream, int* arr, int count)
for (int index = 0; index < count; index++) { for (int index = 0; index < count; index++) {
int value = arr[index]; int value = arr[index];
arr[index] = ((value >> 24) & 0xFF) | ((value >> 8) & 0xFF00) | ((value << 8) & 0xFF0000) | ((value << 24) & 0xFF000000); arr[index] = ((value & 0xFF000000) >> 24) | ((value & 0xFF0000) >> 8) | ((value & 0xFF00) << 8) | ((value & 0xFF) << 24);
} }
return 0; return 0;