1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Print a warning message on unsupported IMG compression

This commit is contained in:
Martin Tůma 2019-09-28 23:55:26 +02:00
parent 1bb9908936
commit 070eff2115

View File

@ -144,8 +144,10 @@ bool RGNFile::init()
return false;
// NT maps
if (dictSize || dictOffset)
if (dictSize || dictOffset) {
qWarning("NT compression not supported");
return false;
}
}
_init = true;