diff --git a/include/osg/Notify b/include/osg/Notify index 5b38d7ad6..b1da1775d 100644 --- a/include/osg/Notify +++ b/include/osg/Notify @@ -80,7 +80,7 @@ extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity); inline std::ostream& notify(void) { return notify(osg::INFO); } #define OSG_NOTIFY(level) if (osg::isNotifyEnabled(level)) osg::notify(level) -#define OSG_FATAL OSG_NOTIFY(osg::FALTAL) +#define OSG_FATAL OSG_NOTIFY(osg::FATAL) #define OSG_WARN OSG_NOTIFY(osg::WARN) #define OSG_NOTICE OSG_NOTIFY(osg::NOTICE) #define OSG_INFO OSG_NOTIFY(osg::INFO) diff --git a/src/osgGA/KeySwitchMatrixManipulator.cpp b/src/osgGA/KeySwitchMatrixManipulator.cpp index 11abfe3f3..08a19d49e 100644 --- a/src/osgGA/KeySwitchMatrixManipulator.cpp +++ b/src/osgGA/KeySwitchMatrixManipulator.cpp @@ -69,7 +69,7 @@ void KeySwitchMatrixManipulator::setDistance(double distance) double KeySwitchMatrixManipulator::getDistance() const { - if(!_current) + if(_current) { return _current->getDistance(); }