sys_usbd: Emulate Dimensions Toypad

This commit is contained in:
Joshua de Reeper 2024-07-01 16:43:07 +01:00 committed by Megamouse
parent a2534263fe
commit 500bf0f3f5
13 changed files with 1593 additions and 1 deletions

View file

@ -21,6 +21,7 @@
#include "progress_dialog.h"
#include "skylander_dialog.h"
#include "infinity_dialog.h"
#include "dimensions_dialog.h"
#include "cheat_manager.h"
#include "patch_manager_dialog.h"
#include "patch_creator_dialog.h"
@ -2851,6 +2852,12 @@ void main_window::CreateConnects()
inf_dlg->show();
});
connect(ui->actionManage_Dimensions_ToyPad, &QAction::triggered, this, [this]
{
dimensions_dialog* dim_dlg = dimensions_dialog::get_dlg(this);
dim_dlg->show();
});
connect(ui->actionManage_Cheats, &QAction::triggered, this, [this]
{
cheat_manager_dialog* cheat_manager = cheat_manager_dialog::get_dlg(this);