From Kristofer Tingdahl, warning fixes.

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15030 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2015-07-31 10:54:13 +00:00
parent d6828651d0
commit 1fe7aa056b
4 changed files with 13 additions and 13 deletions

View File

@@ -721,8 +721,8 @@ bool InteractiveImageHandler::mousePosition(osgViewer::View* view, osg::NodeVisi
if (!view) return false;
if (_fullscreen)
{
x = ea.getX();
y = ea.getY();
x = (int) ea.getX();
y = (int) ea.getY();
return true;
}