just turn off detriangulation for OGL

This commit is contained in:
zicodxx 2006-11-01 02:02:20 +00:00
parent ea02b4440e
commit f46246ac38

View file

@ -391,8 +391,11 @@ ubyte object_rendered[MAX_OBJECTS];
#define DEFAULT_RENDER_DEPTH 16
int Render_depth=DEFAULT_RENDER_DEPTH; //how many segments deep to render
#ifdef OGL
int Detriangulation_on = 0; // 1 = allow rendering of triangulated side as a quad, 0 = don't allow
#else
int Detriangulation_on = 1;
#endif
#ifdef EDITOR
int Render_only_bottom=0;