mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-19 21:35:12 +00:00
Implement Trophy Manager.
This commit is contained in:
parent
9b8eb089b1
commit
4aa89132d7
10 changed files with 558 additions and 2 deletions
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
#include "vfs_dialog.h"
|
||||
#include "save_manager_dialog.h"
|
||||
#include "trophy_manager_dialog.h"
|
||||
#include "kernel_explorer.h"
|
||||
#include "game_list_frame.h"
|
||||
#include "debugger_frame.h"
|
||||
|
|
@ -1246,6 +1247,12 @@ void main_window::CreateConnects()
|
|||
sdid->show();
|
||||
});
|
||||
|
||||
connect(ui->actionManage_Trophy_Data, &QAction::triggered, [=]
|
||||
{
|
||||
trophy_manager_dialog* trop_manager = new trophy_manager_dialog();
|
||||
trop_manager->show();
|
||||
});
|
||||
|
||||
connect(ui->toolsCgDisasmAct, &QAction::triggered, [=]
|
||||
{
|
||||
cg_disasm_window* cgdw = new cg_disasm_window(guiSettings);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue