Capitalise all phrases in the key; I forgot it's a key value, eheh.

This commit is contained in:
The Dax 2013-07-19 20:33:56 -04:00
parent 0dd12765f8
commit 28af84ba89
3 changed files with 3 additions and 3 deletions

View File

@ -162,7 +162,7 @@ void GameSettingsScreen::CreateViews() {
graphicsSettings->Add(new CheckBox(&g_Config.bUseVBO, gs->T("Stream VBO")));
graphicsSettings->Add(new CheckBox(&g_Config.SSAntiAliasing, gs->T("Anti Aliasing")));
graphicsSettings->Add(new CheckBox(&g_Config.bFramebuffersToMem, gs->T("Read Framebuffer to memory")));
graphicsSettings->Add(new CheckBox(&g_Config.bFramebuffersCPUConvert, gs->T("Convert Framebuffers using CPU")));
graphicsSettings->Add(new CheckBox(&g_Config.bFramebuffersCPUConvert, gs->T("Convert Framebuffers Using CPU")));
// TODO: Does frame rate belong among the graphics settings?
graphicsSettings->Add(new ItemHeader(gs->T("Frame rate")));

View File

@ -964,7 +964,7 @@ void GraphicsScreenP1::render() {
if (gpu)
gpu->Resized();
}
if (UICheckBox(GEN_ID, x + 60, y += stride, gs->T("Convert Framebuffers using CPU"), ALIGN_TOPLEFT, &g_Config.bFramebuffersCPUConvert)) {
if (UICheckBox(GEN_ID, x + 60, y += stride, gs->T("Convert Framebuffers Using CPU"), ALIGN_TOPLEFT, &g_Config.bFramebuffersCPUConvert)) {
if (gpu)
gpu->Resized();
}

View File

@ -736,7 +736,7 @@ namespace MainWindow
case ID_OPTIONS_FBOCPUCONVERT:
g_Config.bFramebuffersCPUConvert = !g_Config.bFramebuffersCPUConvert;
osm.ShowOnOff(g->T("Convert Framebuffers using CPU"), g_Config.bFramebuffersCPUConvert);
osm.ShowOnOff(g->T("Convert Framebuffers Using CPU"), g_Config.bFramebuffersCPUConvert);
if(gpu)
gpu->Resized(); // easy way to force a clear...
break;