mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 17:20:14 +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
10 lines
266 B
C++
10 lines
266 B
C++
#pragma once
|
|
|
|
#include "Emu/Cell/Modules/cellSaveData.h"
|
|
|
|
class save_data_dialog : public SaveDialogBase
|
|
{
|
|
public:
|
|
virtual s32 ShowSaveDataList(std::vector<SaveDataEntry>& save_entries, s32 focused, bool isSaving, vm::ptr<CellSaveDataListSet> listSet) override;
|
|
};
|