Skip to content

Commit

Permalink
Fix typo in CompressedArray.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbeverage committed May 13, 2024
1 parent c319a7e commit 3fc9686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osgEarth/CompressedArray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ namespace osgEarth {
is >> is.BEGIN_BRACKET;

int quantization = osgEarth::CompressedVec3Array::QUANTIZE_NONE;
is >> is.PROPERTY("Quantization") >> (int)quantization;
is >> is.PROPERTY("Quantization") >> quantization;
g.setQuantization((osgEarth::CompressedVec3Array::QuantizationType)quantization);

osg::Vec3 min, max;
Expand Down

0 comments on commit 3fc9686

Please sign in to comment.