Skip to content

Commit

Permalink
fixing warning - explicitly writing float
Browse files Browse the repository at this point in the history
typo
  • Loading branch information
Tomer Ashuach committed Sep 22, 2021
1 parent 586a444 commit e412aa5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/ds5/advanced_mode/presets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,18 +255,18 @@ namespace librealsense
p.spc.sloK2PenaltyMod2 = 130;
p.hdad.lambdaAD = 800.f;
p.hdad.lambdaCensus = 26.f;
p.cc.colorCorrection1 = 0.461914;
p.cc.colorCorrection2 = 0.540039;
p.cc.colorCorrection3 = 0.540039;
p.cc.colorCorrection4 = 0.208008;
p.cc.colorCorrection5 = -0.332031;
p.cc.colorCorrection1 = 0.461914f;
p.cc.colorCorrection2 = 0.540039f;
p.cc.colorCorrection3 = 0.540039f;
p.cc.colorCorrection4 = 0.208008f;
p.cc.colorCorrection5 = -0.332031f;
p.cc.colorCorrection6 = -0.212891f;
p.cc.colorCorrection7 = -0.212891f;
p.cc.colorCorrection8 = 0.68457f;
p.cc.colorCorrection9 = 0.930664f;
p.cc.colorCorrection10 = -0.553711;
p.cc.colorCorrection11 = -0.553711;
p.cc.colorCorrection12 = 0.0458984;
p.cc.colorCorrection10 = -0.553711f;
p.cc.colorCorrection11 = -0.553711f;
p.cc.colorCorrection12 = 0.0458984f;
p.depth_table.depthClampMax = 65536;
p.depth_table.depthClampMin = 0;
p.depth_table.depthUnits = 1000;
Expand Down

0 comments on commit e412aa5

Please sign in to comment.