mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 05:10:05 +00:00
code: Nuke savestate support (#42)
This commit is contained in:
parent
a442389a60
commit
ac792f7b98
348 changed files with 123 additions and 7083 deletions
|
@ -15,7 +15,6 @@
|
|||
#include "citra_qt/compatibility_list.h"
|
||||
#include "citra_qt/hotkeys.h"
|
||||
#include "core/core.h"
|
||||
#include "core/savestate.h"
|
||||
|
||||
#ifdef __unix__
|
||||
#include <QDBusObjectPath>
|
||||
|
@ -367,8 +366,9 @@ private:
|
|||
bool defer_update_prompt = false;
|
||||
|
||||
QAction* actions_recent_files[max_recent_files_item];
|
||||
std::array<QAction*, Core::SaveStateSlotCount> actions_load_state;
|
||||
std::array<QAction*, Core::SaveStateSlotCount> actions_save_state;
|
||||
static constexpr size_t SaveStateSlotCount = 8;
|
||||
std::array<QAction*, SaveStateSlotCount> actions_load_state;
|
||||
std::array<QAction*, SaveStateSlotCount> actions_save_state;
|
||||
|
||||
u32 oldest_slot;
|
||||
u64 oldest_slot_time;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue