1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Move cheevos.c to tasks/task_cheevos.c and add TODO/FIXME note

This commit is contained in:
twinaphex 2017-05-06 05:50:46 +02:00
parent 75a5af26c6
commit 33f2fe8029
13 changed files with 14 additions and 12 deletions

View File

@ -1208,7 +1208,7 @@ ifeq ($(HAVE_NETWORKING), 1)
ifeq ($(HAVE_CHEEVOS), 1)
ifeq ($(HAVE_THREADS), 1)
DEFINES += -DHAVE_CHEEVOS
OBJ += cheevos/cheevos.o \
OBJ += tasks/task_cheevos.o \
$(LIBRETRO_COMM_DIR)/utils/md5.o
endif
endif

View File

@ -43,7 +43,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "cheevos/cheevos.h"
#include "tasks/task_cheevos.h"
#endif
#ifdef HAVE_MENU

View File

@ -33,7 +33,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "cheevos/cheevos.h"
#include "tasks/task_cheevos.h"
#endif
#ifdef HAVE_NETWORKING

View File

@ -134,7 +134,7 @@ ACHIEVEMENTS
#include "../libretro-common/formats/json/jsonsax.c"
#include "../network/net_http_special.c"
#include "../cheevos/cheevos.c"
#include "../tasks/task_cheevos.c"
#endif
/*============================================================

View File

@ -30,7 +30,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "../cheevos/cheevos.h"
#include "../tasks/task_cheevos.h"
#endif
#include "cheat_manager.h"

View File

@ -19,7 +19,7 @@
#include "../menu_cbs.h"
#ifdef HAVE_CHEEVOS
#include "../../cheevos/cheevos.h"
#include "../../tasks/task_cheevos.h"
#endif
#include "../../verbosity.h"

View File

@ -37,7 +37,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "../cheevos/cheevos.h"
#include "../tasks/task_cheevos.h"
#endif
#ifdef HAVE_NETWORKING

View File

@ -22,7 +22,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "../../cheevos/cheevos.h"
#include "../../tasks/task_cheevos.h"
#endif
#include "menu_dialog.h"

View File

@ -29,7 +29,7 @@
#include "../../core.h"
#include "../../gfx/video_driver.h"
#include "../../managers/core_option_manager.h"
#include "../../cheevos/cheevos.h"
#include "../../tasks/task_cheevos.h"
#include "../../content.h"
#define BASIC_INFO "info"

View File

@ -37,7 +37,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "cheevos/cheevos.h"
#include "tasks/task_cheevos.h"
#endif
#ifdef HAVE_MENU

View File

@ -13,6 +13,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
/* TODO/FIXME - turn these into actual tasks */
#include <string.h>
#include <ctype.h>
@ -31,7 +33,7 @@
#include "../menu/menu_entries.h"
#endif
#include "cheevos.h"
#include "task_cheevos.h"
#include "../command.h"
#include "../dynamic.h"

View File

@ -66,7 +66,7 @@
#endif
#ifdef HAVE_CHEEVOS
#include "../cheevos/cheevos.h"
#include "task_cheevos.h"
#endif
#include "tasks_internal.h"