mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Add savestate buttons to home menu
This commit is contained in:
parent
a6313fa46c
commit
79d09d02ed
10 changed files with 142 additions and 10 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "util/types.hpp"
|
||||
#include "util/atomic.hpp"
|
||||
#include "Utilities/bit_set.h"
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
|
@ -158,6 +159,16 @@ class Emulator final
|
|||
}
|
||||
}
|
||||
|
||||
enum class SaveStateExtentionFlags1 : u8
|
||||
{
|
||||
SupportsMenuOpenResume,
|
||||
ShouldCloseMenu,
|
||||
|
||||
__bitset_enum_max,
|
||||
};
|
||||
|
||||
bs_t<SaveStateExtentionFlags1> m_savestate_extension_flags1{};
|
||||
|
||||
public:
|
||||
static constexpr std::string_view game_id_boot_prefix = "%RPCS3_GAMEID%:";
|
||||
static constexpr std::string_view vfs_boot_prefix = "%RPCS3_VFS%:";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue