Ignore:
Timestamp:
12/28/06 12:11:38 (17 years ago)
Author:
r2d
Message:

win32 compilation corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/branches/r2d/mpcenc/tags.c

    r165 r194  
    608608        return 0;
    609609
    610         if ( src [0] != 0xFFi  ||  src [1] != 0xFEi )                 // Microsoft Unicode preample (also useful to detect endianess, but currently only little endian is supported)
     610        if ( src [0] != 0xFF  ||  src [1] != 0xFE )                 // Microsoft Unicode preample (also useful to detect endianess, but currently only little endian is supported)
    611611        return 0;
    612612
     
    614614        if ( ( src [1] & 0xFC ) == 0xDC )
    615615            return 0;
    616         if ( src [1] == 0xFFi  &&  ( src [0] & 0xFE ) == 0xFE )
     616        if ( src [1] == 0xFF  &&  ( src [0] & 0xFE ) == 0xFE )
    617617            return 0;
    618618        if ( ( src [1] & 0xFC ) == 0xD8 ) {
Note: See TracChangeset for help on using the changeset viewer.