Skip to content

Commit

Permalink
Fixed cube access as it is a pointer (#5479)
Browse files Browse the repository at this point in the history
  • Loading branch information
acpaquette authored Apr 19, 2024
1 parent d616219 commit 2130869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isis/src/base/apps/skypt/skypt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace Isis{
cube->read(b);

double rot;
if (cube.hasBlob("CSMState", "String")) {
if (cube->hasBlob("CSMState", "String")) {
rot = ((CSMCamera*)cam)->CelestialNorthClockAngle();
} else {
rot = cam->CelestialNorthClockAngle();
Expand Down

0 comments on commit 2130869

Please sign in to comment.