mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
See if this silences MSVC2019...
This commit is contained in:
parent
1468528a62
commit
ae1e357fb7
@ -203,7 +203,7 @@ bool IMG::readBlock(int blockNum, char *data)
|
||||
{
|
||||
if (!_file.seek((quint64)blockNum << _blockBits))
|
||||
return false;
|
||||
if (read(data, (qint64)(1U<<_blockBits)) < (qint64)(1U<<_blockBits))
|
||||
if (read(data, 1ULL<<_blockBits) < (qint64)(1ULL<<_blockBits))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
@ -29,8 +29,9 @@ static bool adjDistInfo(BitStream1 &bs, bool extraBit, bool &eog)
|
||||
|
||||
if (!bs.read((int)extraBit | 8, data))
|
||||
return false;
|
||||
if (!extraBit)
|
||||
data <<= 1;
|
||||
|
||||
data <<= !(int)extraBit;
|
||||
eog |= (quint8)data & 1;
|
||||
data >>= 1;
|
||||
|
||||
@ -50,8 +51,8 @@ static bool adjNodeInfo(BitStream1 &bs, bool extraBit, NodeOffset &offset)
|
||||
|
||||
if (!bs.read(9, data))
|
||||
return false;
|
||||
|
||||
data <<= !(int)extraBit;
|
||||
if (!extraBit)
|
||||
data <<= 1;
|
||||
|
||||
if (data & 1) {
|
||||
offset.ext = true;
|
||||
|
Loading…
Reference in New Issue
Block a user