(Griffin) Add HAVE_MIST files

(Command.c) Remove some unused variables
This commit is contained in:
libretroadmin 2023-02-25 17:51:16 +01:00
parent 9192abb608
commit 1314d9479b
2 changed files with 9 additions and 3 deletions

View File

@ -672,9 +672,6 @@ bool command_load_state_slot(command_t *cmd, const char *arg)
char state_path[16384];
retro_ctx_size_info_t info;
char reply[128] = "";
runloop_state_t *runloop_st = runloop_state_get_ptr();
const rarch_system_info_t
*system = &runloop_st->system;
unsigned int slot = (unsigned int)strtoul(arg, NULL, 10);
char *reply_at = reply + snprintf(reply, sizeof(reply) - 1, "LOAD_STATE_SLOT %d", slot);
bool savestates_enabled = core_info_current_supports_savestate();

View File

@ -1685,3 +1685,12 @@ ANDROID PLAY FEATURE DELIVERY
#if defined(ANDROID)
#include "../play_feature_delivery/play_feature_delivery.c"
#endif
/*============================================================
STEAM INTEGRATION USING MIST
============================================================ */
#ifdef HAVE_MIST
#include "../steam/steam.c"
#include "../tasks/task_steam.c"
#include "../network/presence.c"
#endif