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

Move patch.c to tasks/task_patch.c

This commit is contained in:
twinaphex 2017-01-31 05:33:13 +01:00
parent ccdd90bdd1
commit 1a5978d7a2
3 changed files with 3 additions and 2 deletions

View File

@ -208,7 +208,6 @@ OBJ += frontend/frontend.o \
input/input_remapping.o \
tasks/task_overlay.o \
input/input_overlay.o \
patch.o \
$(LIBRETRO_COMM_DIR)/queues/fifo_queue.o \
managers/core_option_manager.o \
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.o \

View File

@ -93,7 +93,7 @@
#include "../paths.h"
#include "../verbosity.h"
#include "../patch.c"
#include "task_patch.c"
#define MAX_ARGS 32

View File

@ -17,6 +17,8 @@
/* BPS/UPS/IPS implementation from bSNES (nall::).
* Modified for RetroArch. */
/* TODO/FIXME - turn this into actual task */
#include <stdint.h>
#include <string.h>