aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Texture.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Texture.cc')
-rw-r--r--src/FbTk/Texture.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/FbTk/Texture.cc b/src/FbTk/Texture.cc
index 4c451cb..2b67842 100644
--- a/src/FbTk/Texture.cc
+++ b/src/FbTk/Texture.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Texture.cc,v 1.6 2003/08/12 11:44:19 fluxgen Exp $ 25// $Id: Texture.cc,v 1.7 2004/01/11 20:33:24 fluxgen Exp $
26 26
27#include "Texture.hh" 27#include "Texture.hh"
28 28
@@ -78,6 +78,8 @@ void Texture::setFromString(const char * const texture_str) {
78 addType(Texture::SUNKEN); 78 addType(Texture::SUNKEN);
79 else if (strstr(ts, "flat")) 79 else if (strstr(ts, "flat"))
80 addType(Texture::FLAT); 80 addType(Texture::FLAT);
81 else if (strstr(ts, "invert"))
82 addType(Texture::INVERT);
81 else 83 else
82 addType(Texture::RAISED); 84 addType(Texture::RAISED);
83 85