1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

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

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) {