Changeset 7 for trunk/src/mpc_decoder.c
- Timestamp:
- 08/12/06 16:26:51 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mpc_decoder.c
r6 r7 84 84 mpc_uint32_t n; 85 85 for(n = 0; n< count; n++) { 86 ptr[n] = swap32(ptr[n]);86 ptr[n] = mpc_swap32(ptr[n]); 87 87 } 88 88 #endif … … 324 324 #ifdef MPC_LITTLE_ENDIAN 325 325 for (i = 0; i < (in_len + 3) / 4; i++) 326 d->Speicher[i] = swap32(d->Speicher[i]);326 d->Speicher[i] = mpc_swap32(d->Speicher[i]); 327 327 #endif 328 328 d->dword = d->Speicher[0];
Note: See TracChangeset
for help on using the changeset viewer.