cpu::Processor now tracks a pointer to the emulator.

This commit is contained in:
Dr. Chat
2015-11-27 22:33:48 -06:00
committed by Ben Vanik
parent 7d59258839
commit 28468f8a18
5 changed files with 12 additions and 7 deletions

View File

@@ -40,7 +40,7 @@ class TestFunction {
#if XENIA_TEST_X64
{
auto processor =
std::make_unique<Processor>(memory.get(), nullptr, nullptr);
std::make_unique<Processor>(nullptr, memory.get(), nullptr, nullptr);
processor->Setup();
processors.emplace_back(std::move(processor));
}