summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src
diff options
context:
space:
mode:
authorNeoBrainX <NeoBrainX@googlemail.com>2011-07-29 22:18:11 +0000
committerNeoBrainX <NeoBrainX@googlemail.com>2011-07-29 22:18:11 +0000
commit0655ee571d49493a2018ea819ebbb6eb9208fefd (patch)
treea0bcd5490a3f7c5e8120a8bb17fb72aa45d95484 /Source/Core/VideoCommon/Src
parent81807e3f2cac43ad89b69fa1f77fcb3c85c0da53 (diff)
Shader compilation error message modified to contain some helpful information for noobs (includes a reference to the full bad shader dump).
Removed the "Hide Shader Errors" option; hide shader errors if panic handlers are disabled now. Removed superfluous error messages about shader compilations; display only one error message instead. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7688 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src')
-rw-r--r--Source/Core/VideoCommon/Src/VideoConfig.cpp2
-rw-r--r--Source/Core/VideoCommon/Src/VideoConfig.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoConfig.cpp b/Source/Core/VideoCommon/Src/VideoConfig.cpp
index c04e57beae..8bad7b005a 100644
--- a/Source/Core/VideoCommon/Src/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp
@@ -81,7 +81,6 @@ void VideoConfig::Load(const char *ini_file)
iniFile.Get("Settings", "EnablePixelLighting", &bEnablePixelLighting, 0);
iniFile.Get("Settings", "EnablePerPixelDepth", &bEnablePerPixelDepth, 0);
- iniFile.Get("Settings", "ShowShaderErrors", &bShowShaderErrors, 1);
iniFile.Get("Settings", "MSAA", &iMultisampleMode, 0);
iniFile.Get("Settings", "EFBScale", &iEFBScale, 2); // native
@@ -219,7 +218,6 @@ void VideoConfig::Save(const char *ini_file)
iniFile.Set("Settings", "ShowEFBCopyRegions", bShowEFBCopyRegions);
- iniFile.Set("Settings", "ShowShaderErrors", bShowShaderErrors);
iniFile.Set("Settings", "MSAA", iMultisampleMode);
iniFile.Set("Settings", "EFBScale", iEFBScale);
iniFile.Set("Settings", "TexFmtOverlayEnable", bTexFmtOverlayEnable);
diff --git a/Source/Core/VideoCommon/Src/VideoConfig.h b/Source/Core/VideoCommon/Src/VideoConfig.h
index b90d6c4b60..92a8b67741 100644
--- a/Source/Core/VideoCommon/Src/VideoConfig.h
+++ b/Source/Core/VideoCommon/Src/VideoConfig.h
@@ -143,7 +143,6 @@ struct VideoConfig
//currently unused:
int iCompileDLsLevel;
- bool bShowShaderErrors;
// D3D only config, mostly to be merged into the above
int iAdapter;