From 4a4833e617b9644bf6c45e20a9f4d308d847b174 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 85b51c3f74..08b3daca94 100644 --- a/Source/Core/VideoCommon/Src/VideoConfig.cpp +++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp @@ -87,7 +87,7 @@ void VideoConfig::Load(const char *ini_file) iniFile.Get("Settings", "TexFmtOverlayCenter", &bTexFmtOverlayCenter, 0); iniFile.Get("Settings", "WireFrame", &bWireFrame, 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);