add option to label trimmed xci dumps (disabled by default).

This commit is contained in:
ITotalJustice
2025-05-26 17:55:54 +01:00
parent 7c45d60e60
commit 66fe526754
3 changed files with 11 additions and 2 deletions

View File

@@ -1739,6 +1739,10 @@ void App::DisplayDumpOptions(bool left_side) {
App::GetApp()->m_dump_trim_xci.Set(enable);
}));
options->Add(std::make_shared<ui::SidebarEntryBool>("Label trimmed XCI"_i18n, App::GetApp()->m_dump_label_trim_xci.Get(), [](bool& enable){
App::GetApp()->m_dump_label_trim_xci.Set(enable);
}));
options->Add(std::make_shared<ui::SidebarEntryBool>("Multi-threaded USB transfer"_i18n, App::GetApp()->m_dump_usb_transfer_stream.Get(), [](bool& enable){
App::GetApp()->m_dump_usb_transfer_stream.Set(enable);
}));