mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-15 12:10:53 +00:00
libsmackerdec: Fix incorrect version comparison (though it wasn't breaking anything)
This commit is contained in:
parent
e2569d9980
commit
6f64967d00
1 changed files with 1 additions and 1 deletions
|
@ -848,7 +848,7 @@ int SmackerDecoder::DecodeFrame(uint32_t frameSize)
|
|||
break;
|
||||
case SMK_BLK_FULL:
|
||||
mode = 0;
|
||||
if (kSMK4iD == signature) // In case of Smacker v4 we have three modes
|
||||
if (isVer4) // In case of Smacker v4 we have three modes
|
||||
{
|
||||
if (bits.GetBit()) mode = 1;
|
||||
else if (bits.GetBit()) mode = 2;
|
||||
|
|
Loading…
Reference in a new issue