Move translation task code to tasks/task_translation.c (#13274)

This commit is contained in:
Autechre 2021-11-22 15:19:20 +01:00 committed by GitHub
parent 9982452c18
commit 5bb4df3a42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1178 additions and 1151 deletions

View File

@ -264,6 +264,7 @@ OBJ += \
ifeq ($(HAVE_TRANSLATE), 1)
OBJ += $(LIBRETRO_COMM_DIR)/encodings/encoding_base64.o
OBJ += tasks/task_translation.o
endif
OBJ += \

View File

@ -1345,6 +1345,9 @@ DATA RUNLOOP
#include "../tasks/task_playlist_manager.c"
#include "../tasks/task_manual_content_scan.c"
#include "../tasks/task_core_backup.c"
#ifdef HAVE_TRANSLATE
#include "../tasks/task_translation.c"
#endif
#ifdef HAVE_ZLIB
#include "../tasks/task_decompress.c"
#endif

1151
runloop.c

File diff suppressed because it is too large Load Diff

View File

@ -37,6 +37,7 @@
#endif
#include "dynamic.h"
#include "configuration.h"
#include "core_option_manager.h"
#include "performance_counters.h"
#include "state_manager.h"

1173
tasks/task_translation.c Normal file

File diff suppressed because it is too large Load Diff