diff --git a/command.c b/command.c index a97e02e5607..ddec005f33f 100644 --- a/command.c +++ b/command.c @@ -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(); diff --git a/griffin/griffin.c b/griffin/griffin.c index 34e5492f215..72faf6a3112 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -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