GPU: Add force true color setting

This commit is contained in:
Connor McLaughlin
2019-11-02 00:31:25 +10:00
parent fc09b722ea
commit c9feb7ea07
8 changed files with 30 additions and 12 deletions

View File

@ -26,7 +26,7 @@ bool GPU::Initialize(System* system, DMA* dma, InterruptController* interrupt_co
return true;
}
void GPU::UpdateResolutionScale()
void GPU::UpdateSettings()
{
m_resolution_scale = std::clamp<u32>(m_system->GetSettings().gpu_resolution_scale, 1, m_max_resolution_scale);
}