1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +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,9 +144,11 @@ bool RGNFile::init()
return false; return false;
// NT maps // NT maps
if (dictSize || dictOffset) if (dictSize || dictOffset) {
qWarning("NT compression not supported");
return false; return false;
} }
}
_init = true; _init = true;