From Wang Rui, "Two small bugs were just found when I was writing examples for my book

in process: a wrong definition of the OSG_FATAL macro, and wrong logic
inside the KeySwitchMatrixManipulator::getDistance() function. I
believe both were slips."
This commit is contained in:
Robert Osfield
2010-04-28 20:33:40 +00:00
parent 363f32536b
commit 5435f6cf50
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ void KeySwitchMatrixManipulator::setDistance(double distance)
double KeySwitchMatrixManipulator::getDistance() const
{
if(!_current)
if(_current)
{
return _current->getDistance();
}