[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;
}

View File

@ -43,10 +43,7 @@ class TraceDump {
virtual std::unique_ptr<gpu::GraphicsSystem> CreateGraphicsSystem() = 0;
std::unique_ptr<xe::ui::Loop> loop_;
std::unique_ptr<xe::ui::Window> window_;
std::unique_ptr<Emulator> emulator_;
Memory* memory_ = nullptr;
GraphicsSystem* graphics_system_ = nullptr;
std::unique_ptr<TracePlayer> player_;