mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 17:57:14 +00:00
IMAGE: Fix compiler warning in Indeo decoders
This commit is contained in:
parent
9169099b23
commit
785696ae5d
@ -203,7 +203,7 @@ void VLC::freeVlc() {
|
||||
}
|
||||
|
||||
int VLC::compareVlcSpec(const void *a, const void *b) {
|
||||
const VLCcode *sa = (VLCcode *)a, *sb = (VLCcode *)b;
|
||||
const VLCcode *sa = (const VLCcode *)a, *sb = (const VLCcode *)b;
|
||||
return (sa->code >> 1) - (sb->code >> 1);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user