minor fix
This commit is contained in:
parent
a819ff8252
commit
2db11d2104
1 changed files with 5 additions and 4 deletions
|
@ -22,7 +22,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: Texture.cc,v 1.7 2004/01/11 20:33:24 fluxgen Exp $
|
||||
// $Id: Texture.cc,v 1.8 2004/01/11 21:04:21 fluxgen Exp $
|
||||
|
||||
#include "Texture.hh"
|
||||
|
||||
|
@ -77,9 +77,7 @@ void Texture::setFromString(const char * const texture_str) {
|
|||
else if (strstr(ts, "sunken"))
|
||||
addType(Texture::SUNKEN);
|
||||
else if (strstr(ts, "flat"))
|
||||
addType(Texture::FLAT);
|
||||
else if (strstr(ts, "invert"))
|
||||
addType(Texture::INVERT);
|
||||
addType(Texture::FLAT);
|
||||
else
|
||||
addType(Texture::RAISED);
|
||||
|
||||
|
@ -89,6 +87,9 @@ void Texture::setFromString(const char * const texture_str) {
|
|||
else
|
||||
addType(Texture::BEVEL1);
|
||||
|
||||
if (strstr(ts, "invert"))
|
||||
addType(Texture::INVERT);
|
||||
|
||||
if (strstr(ts, "interlaced"))
|
||||
addType(Texture::INTERLACED);
|
||||
|
||||
|
|
Loading…
Reference in a new issue