From 0789ea99b3b5ccbaf1fc696d7c10115ba5fb2b21 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Sun, 23 May 2021 13:06:11 +0100 Subject: [PATCH] Disable fast mode by default --- GL/flush.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GL/flush.c b/GL/flush.c index b29aac9..bcc9c6f 100644 --- a/GL/flush.c +++ b/GL/flush.c @@ -10,10 +10,10 @@ PolyList TR_LIST; * gains. Specifically glDepthRange will be ignored, and the final * Z coordinate will be invW and not between 0 and 1. * - * Defaults to TRUE set to FALSE if you experience issues. + * This will break orthographic mode so default is FALSE **/ -#define FAST_MODE GL_TRUE +#define FAST_MODE GL_FALSE PolyList* _glOpaquePolyList() { return &OP_LIST;