mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix typos.
This commit is contained in:
parent
9e535717f9
commit
0dd12765f8
2 changed files with 2 additions and 2 deletions
|
@ -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 Framebuffer 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")));
|
||||
|
|
|
@ -736,7 +736,7 @@ namespace MainWindow
|
|||
|
||||
case ID_OPTIONS_FBOCPUCONVERT:
|
||||
g_Config.bFramebuffersCPUConvert = !g_Config.bFramebuffersCPUConvert;
|
||||
osm.ShowOnOff(g->T("Convert Framebuffer 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;
|
||||
|
|
Loading…
Add table
Reference in a new issue