[CPU] Null backend enough for GPU trace viewing

This commit is contained in:
Triang3l
2022-07-06 23:28:06 +03:00
parent 3ee68d79ea
commit 88c055eb30
8 changed files with 94 additions and 14 deletions

View File

@@ -95,8 +95,8 @@ bool TraceDump::Setup() {
// Create the emulator but don't initialize so we can setup the window.
emulator_ = std::make_unique<Emulator>("", "", "", "");
X_STATUS result = emulator_->Setup(
nullptr, nullptr, nullptr, [this]() { return CreateGraphicsSystem(); },
nullptr);
nullptr, nullptr, false, nullptr,
[this]() { return CreateGraphicsSystem(); }, nullptr);
if (XFAILED(result)) {
XELOGE("Failed to setup emulator: {:08X}", result);
return false;