mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* Split save_data_utility into two classes. * Add entry notes to saves. * Code review changes
13 lines
374 B
C++
13 lines
374 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
#include "save_data_dialog.h"
|
|
#include "save_data_list_dialog.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();
|
|
}
|