rpcsx/rpcs3/rpcs3qt/save_data_dialog.cpp
Robbie 190a59ce03 Basic Save Manager (#2924)
* The basic unstubbing.  Save entries will be listed and you can select a save.  If you select none, then it'll work as well.  WIP

* Filled out the trivial parts of the info dialog.

* Finish implementation and clean up.  No "maintain" dialog or context menu for now until the copy/delete functions are implemented.

* Fix crash

* Update cellSaveData.cpp
2017-07-01 21:42:09 +03:00

13 lines
370 B
C++

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "save_data_dialog.h"
#include "save_data_utility.h"
s32 save_data_dialog::ShowSaveDataList(std::vector<SaveDataEntry>& save_entries, s32 focused, bool isSaving, vm::ptr<CellSaveDataListSet> listSet)
{
save_data_list_dialog sdid(save_entries, focused, isSaving);
sdid.exec();
return sdid.GetSelection();
}