video_core/engine: Consistently initialize rasterizer pointers

Ensures all of the engines have consistent and deterministic
initialization of the rasterizer pointers.
This commit is contained in:
Lioncash 2021-07-27 07:30:54 -04:00
parent 08350d1744
commit 23ec5faf24
2 changed files with 2 additions and 2 deletions

View file

@ -227,7 +227,7 @@ private:
Core::System& system;
MemoryManager& memory_manager;
VideoCore::RasterizerInterface* rasterizer;
VideoCore::RasterizerInterface* rasterizer = nullptr;
std::vector<u8> read_buffer;
std::vector<u8> write_buffer;