Fixed jfs's borkage. (wouldn't compile on VC++)

Originally committed to SVN as r2493.
This commit is contained in:
Rodrigo Braz Monteiro 2008-11-26 02:24:37 +00:00
parent 42dd599579
commit 329d8ef9bf
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ const AegiVideoFrame FFmpegSourceVideoProvider::GetFrame(int _n, int FormatType)
// this is what we'll return eventually
AegiVideoFrame &DstFrame = CurFrame;
bool big_endian = Endian::BigToMachine((int)1)==(int)1;
bool big_endian = Endian::BigToMachine((unsigned int)1)==(unsigned int)1;
// choose output format
if (FormatType & FORMAT_RGB32 && big_endian) {