mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
sys_usbd: Emulate Dimensions Toypad
This commit is contained in:
parent
a2534263fe
commit
500bf0f3f5
13 changed files with 1593 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue