From f59063c8e7ec48992cdb0e7b2952ffc801daeefd Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 25 Dec 2011 22:00:24 -0500 Subject: [PATCH] default to GLSL instead of Cg --- Source/Core/VideoCommon/Src/VideoConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/VideoConfig.cpp b/Source/Core/VideoCommon/Src/VideoConfig.cpp index 69c1c4ce1c..21c71f5dfc 100644 --- a/Source/Core/VideoCommon/Src/VideoConfig.cpp +++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp @@ -93,7 +93,7 @@ void VideoConfig::Load(const char *ini_file) iniFile.Get("Settings", "DisableLighting", &bDisableLighting, 0); iniFile.Get("Settings", "DisableTexturing", &bDisableTexturing, 0); iniFile.Get("Settings", "DisableFog", &bDisableFog, 0); - iniFile.Get("Settings", "UseGLSL", &bUseGLSL, 0); + iniFile.Get("Settings", "UseGLSL", &bUseGLSL, true); iniFile.Get("Settings", "EnableOpenCL", &bEnableOpenCL, false); iniFile.Get("Settings", "OMPDecoder", &bOMPDecoder, false);