From fcdf512ee80685ce8030bf6fd50786edf64dfaa6 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Mon, 11 Dec 2017 00:01:45 -0800 Subject: [PATCH] GPU: Rename GPUBackend setting to apply default. --- Core/Config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 2b2bd3ffb3..665481f34b 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -505,7 +505,7 @@ static ConfigSetting graphicsSettings[] = { ConfigSetting("CardboardXShift", &g_Config.iCardboardXShift, 0, true, true), ConfigSetting("CardboardYShift", &g_Config.iCardboardXShift, 0, true, true), ConfigSetting("ShowFPSCounter", &g_Config.iShowFPSCounter, 0, true, true), - ReportedConfigSetting("GPUBackend", &g_Config.iGPUBackend, &DefaultGPUBackend), + ReportedConfigSetting("GraphicsBackend", &g_Config.iGPUBackend, &DefaultGPUBackend), ReportedConfigSetting("RenderingMode", &g_Config.iRenderingMode, &DefaultRenderingMode, true, true), ConfigSetting("SoftwareRenderer", &g_Config.bSoftwareRendering, false, true, true), ReportedConfigSetting("HardwareTransform", &g_Config.bHardwareTransform, true, true, true), @@ -530,7 +530,7 @@ static ConfigSetting graphicsSettings[] = { #else ConfigSetting("AnisotropyLevel", &g_Config.iAnisotropyLevel, 4, true, true), #endif - ReportedConfigSetting("VertexCache", &g_Config.bVertexCache, &DefaultVertexCache, true, true), + ReportedConfigSetting("VertexDecCache", &g_Config.bVertexCache, &DefaultVertexCache, true, true), ReportedConfigSetting("TextureBackoffCache", &g_Config.bTextureBackoffCache, false, true, true), ReportedConfigSetting("TextureSecondaryCache", &g_Config.bTextureSecondaryCache, false, true, true), ReportedConfigSetting("VertexDecJit", &g_Config.bVertexDecoderJit, &DefaultCodeGen, false),