mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
sys_usbd implementation
This commit is contained in:
parent
2f884de885
commit
e98c7f4e1a
16 changed files with 2049 additions and 220 deletions
|
|
@ -28,6 +28,7 @@
|
|||
#include "about_dialog.h"
|
||||
#include "pad_settings_dialog.h"
|
||||
#include "progress_dialog.h"
|
||||
#include "skylander_dialog.h"
|
||||
|
||||
#include <thread>
|
||||
|
||||
|
|
@ -1271,6 +1272,12 @@ void main_window::CreateConnects()
|
|||
trop_manager->show();
|
||||
});
|
||||
|
||||
connect(ui->actionManage_Skylanders_Portal, &QAction::triggered, [=]
|
||||
{
|
||||
skylander_dialog* sky_diag = skylander_dialog::get_dlg(this);
|
||||
sky_diag->show();
|
||||
});
|
||||
|
||||
connect(ui->actionManage_Users, &QAction::triggered, [=]
|
||||
{
|
||||
user_manager_dialog user_manager(guiSettings, this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue