From 3eef331f2a42fb4bc52c6c1df9bb4380b699b329 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 18 Dec 2003 10:57:57 +0000 Subject: [PATCH] Fixed s/getCreateBackFace(bool on) methds so that use used the correct variable. --- include/osg/ShapeDrawable | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/ShapeDrawable b/include/osg/ShapeDrawable index 79c028eea..3cbfdf83f 100644 --- a/include/osg/ShapeDrawable +++ b/include/osg/ShapeDrawable @@ -74,8 +74,8 @@ class TessellationHints : public Object inline void setCreateFrontFace(bool on) { _createFrontFace=on; } inline bool getCreateFrontFace() const { return _createFrontFace; } - inline void setCreateBackFace(bool on) { _createFrontFace=on; } - inline bool getCreateBackFace() const { return _createFrontFace; } + inline void setCreateBackFace(bool on) { _createBackFace=on; } + inline bool getCreateBackFace() const { return _createBackFace; } inline void setCreateNormals(bool on) { _createNormals=on; } inline bool getCreateNormals() const { return _createNormals; }