mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 13:55:38 +00:00
GPU: Fix parameters not applying on startup
This commit is contained in:
parent
d461d7c87a
commit
c0ea35ccdc
|
@ -33,6 +33,8 @@ bool GPU::Initialize(HostDisplay* host_display, System* system, DMA* dma, Interr
|
|||
Settings::GetDisplayAspectRatioValue(m_system->GetSettings().display_aspect_ratio);
|
||||
m_tick_event =
|
||||
m_system->CreateTimingEvent("GPU Tick", 1, 1, std::bind(&GPU::Execute, this, std::placeholders::_1), true);
|
||||
m_fifo_size = system->GetSettings().gpu_fifo_size;
|
||||
m_max_run_ahead = system->GetSettings().gpu_max_run_ahead;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue