From cc5e1545115300445732bd09f84831e55dfaff77 Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Tue, 19 Dec 2017 21:39:54 +0100 Subject: [PATCH] Disable the softrenderer by default. Before we can ship the softrenderer in the default install we'll need to clean up the cvars. Currently the softrenderer is using the gl_* cvars which is confusing. --- CMakeLists.txt | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index df9abb6e..e253da2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ string(REPLACE "-O3" "-O2" CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}") option(ZIP_SUPPORT "ZIP support" ON) option(OGG_SUPPORT "OGG Vorbis playback support (Music)" ON) option(OPENAL_SUPPORT "OpenAL support" ON) -option(SOFTRENDERER_SUPPORT "Enabled the software renderer" ON) +option(SOFTRENDERER_SUPPORT "Enabled the software renderer" OFF) option(SYSTEMWIDE_SUPPORT "Enable systemwide installation of game assets" OFF) # These variables will act as our list of include folders and linker flags diff --git a/Makefile b/Makefile index 6ac9d75f..1b7fb6ef 100755 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ # ------------------------- # Build soft render -WITH_REFSOFT:=yes +WITH_REFSOFT:=no # Enables CD audio playback. CD audio playback is used # for the background music and doesn't add any further