Last file to merge into retroarch.c - from here, we

can start refactoring things to split things off into tasks
that are not crucial to the main runloop
This commit is contained in:
twinaphex 2019-07-22 16:46:33 +02:00
parent 25f4aa9c30
commit 8438c9650a
4 changed files with 2997 additions and 3088 deletions

View File

@ -156,7 +156,6 @@ OBJ += frontend/frontend_driver.o \
frontend/drivers/platform_null.o \ frontend/drivers/platform_null.o \
retroarch.o \ retroarch.o \
paths.o \ paths.o \
command.o \
msg_hash.o \ msg_hash.o \
intl/msg_hash_us.o \ intl/msg_hash_us.o \
$(LIBRETRO_COMM_DIR)/queues/task_queue.o \ $(LIBRETRO_COMM_DIR)/queues/task_queue.o \

3085
command.c

File diff suppressed because it is too large Load Diff

View File

@ -1372,8 +1372,6 @@ MENU
#include "../input/input_mapper.c" #include "../input/input_mapper.c"
#include "../command.c"
#if defined(HAVE_NETWORKING) #if defined(HAVE_NETWORKING)
#include "../libretro-common/net/net_http_parse.c" #include "../libretro-common/net/net_http_parse.c"
#endif #endif

File diff suppressed because it is too large Load Diff