Put cheevos_reset_game around HAVE_CHEEVOS ifdef

This commit is contained in:
twinaphex 2016-11-04 22:24:34 +01:00
parent 1a04875a6c
commit dfc188a7ed

View File

@ -356,7 +356,9 @@ bool core_get_system_av_info(struct retro_system_av_info *av_info)
bool core_reset(void)
{
core.retro_reset();
#ifdef HAVE_CHEEVOS
cheevos_reset_game();
#endif
return true;
}