forked from mia/Aegisub
Fixed jfs's borkage. (wouldn't compile on VC++)
Originally committed to SVN as r2493.
This commit is contained in:
parent
42dd599579
commit
329d8ef9bf
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue