diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-03-29 17:12:02 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-10-15 11:55:09 -0400 |
commit | b8b7ebcece955316680a09eb68b891e0acff9fcc (patch) | |
tree | aa91993f95efbd8d44ef00bd535260cc32feebd1 /src/yuzu/debugger/wait_tree.cpp | |
parent | 9031502974fa25c9c8521ad96ecc8126fcac51c6 (diff) |
Correct compiling errors and addapt to the new interface.
Diffstat (limited to 'src/yuzu/debugger/wait_tree.cpp')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index cd8180f8b..c5b9aa08f 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -66,10 +66,7 @@ std::vector<std::unique_ptr<WaitTreeThread>> WaitTreeItem::MakeThreadItemList() }; const auto& system = Core::System::GetInstance(); - add_threads(system.Scheduler(0).GetThreadList()); - add_threads(system.Scheduler(1).GetThreadList()); - add_threads(system.Scheduler(2).GetThreadList()); - add_threads(system.Scheduler(3).GetThreadList()); + add_threads(system.GlobalScheduler().GetThreadList()); return item_list; } |