mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 17:50:31 +01:00
* 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
13 lines
370 B
C++
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();
|
|
}
|