Skip to content
Snippets Groups Projects
Commit c5c54254 authored by Volker Hilsheimer's avatar Volker Hilsheimer
Browse files

Fix warning from int/uint mix


Change-Id: I3eda4e5a42b843b6c9b7153a398563b585cb66fe
Reviewed-by: default avatarLaszlo Agocs <laszlo.agocs@qt.io>
parent c1e410d1
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ void tst_QQuick3DSpotLight::testProperties()
QQuick3DAbstractLight::QSSGShadowMapQuality::ShadowMapQualityHigh,
QQuick3DAbstractLight::QSSGShadowMapQuality::ShadowMapQualityVeryHigh
};
const int mappedResolutions[] = {8, 9, 10, 11};
const unsigned int mappedResolutions[] = {8, 9, 10, 11};
for (int i = 0; i < 4; ++i) {
const auto shadowMapQuality = qualities[i];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment