mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
PSFLoader improved
This commit is contained in:
parent
37b22ec99d
commit
b2111b3c3d
10 changed files with 216 additions and 91 deletions
|
|
@ -22,8 +22,8 @@
|
|||
#include "Emu/Io/XInput/XInputPadHandler.h"
|
||||
#endif
|
||||
|
||||
#include "Emu/SysCalls/Modules/cellMsgDialog.h"
|
||||
#include "Gui/MsgDialog.h"
|
||||
#include "Gui/SaveDataDialog.h"
|
||||
|
||||
#include "Gui/GLGSFrame.h"
|
||||
#include <wx/stdpaths.h>
|
||||
|
|
@ -41,9 +41,10 @@ wxDEFINE_EVENT(wxEVT_DBG_COMMAND, wxCommandEvent);
|
|||
IMPLEMENT_APP(Rpcs3App)
|
||||
Rpcs3App* TheApp;
|
||||
|
||||
std::string simplify_path(const std::string& path, bool is_dir);
|
||||
extern std::string simplify_path(const std::string& path, bool is_dir);
|
||||
|
||||
extern std::unique_ptr<MsgDialogInstance> g_msg_dialog;
|
||||
extern std::unique_ptr<SaveDataDialogInstance> g_savedata_dialog;
|
||||
|
||||
bool Rpcs3App::OnInit()
|
||||
{
|
||||
|
|
@ -137,6 +138,7 @@ bool Rpcs3App::OnInit()
|
|||
});
|
||||
|
||||
g_msg_dialog.reset(new MsgDialogFrame);
|
||||
g_savedata_dialog.reset(new SaveDataDialogFrame);
|
||||
|
||||
TheApp = this;
|
||||
SetAppName(_PRGNAME_);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue