[GPU] Remove a few unused variables from TraceDump

This commit is contained in:
DrChat
2017-12-20 14:38:02 -06:00
parent a9318f72c9
commit 886a223cf2
2 changed files with 1 additions and 5 deletions

View File

@@ -110,9 +110,8 @@ bool TraceDump::Setup() {
XELOGE("Failed to setup emulator: %.8X", result);
return false;
}
memory_ = emulator_->memory();
graphics_system_ = emulator_->graphics_system();
player_ = std::make_unique<TracePlayer>(loop_.get(), graphics_system_);
player_ = std::make_unique<TracePlayer>(nullptr, graphics_system_);
return true;
}