diff --git a/command.c b/command.c index 13d24ca659..3e268b4f04 100644 --- a/command.c +++ b/command.c @@ -1309,6 +1309,8 @@ static void command_event_set_savestate_auto_index(void) static bool event_init_content(void) { + global_t *global = global_get_ptr(); + rarch_ctl(RARCH_CTL_SET_SRAM_ENABLE, NULL); /* No content to be loaded for dummy core, @@ -1323,7 +1325,13 @@ static bool event_init_content(void) return false; if (content_does_not_need_content()) + { +#ifdef HAVE_NETPLAY + if (global->netplay.enable) + RARCH_ERR("sorry, unimplemented: cores that don't demand content cannot participate in netplay\n"); +#endif return true; + } command_event_set_savestate_auto_index();