Move runtime_file to RetroArch

This commit is contained in:
twinaphex 2019-03-01 01:22:35 +01:00
parent 0b63b7b499
commit 5cce51ed8d
5 changed files with 11 additions and 10 deletions

View File

@ -239,7 +239,7 @@ OBJ += frontend/frontend.o \
core_info.o \
$(LIBRETRO_COMM_DIR)/file/config_file.o \
$(LIBRETRO_COMM_DIR)/file/config_file_userdata.o \
$(LIBRETRO_COMM_DIR)/file/runtime_file.o \
runtime_file.o \
tasks/task_screenshot.o \
tasks/task_powerstate.o \
$(LIBRETRO_COMM_DIR)/gfx/scaler/scaler.o \

View File

@ -143,7 +143,7 @@ CONFIG FILE
/*============================================================
RUNTIME FILE
============================================================ */
#include "../libretro-common/file/runtime_file.c"
#include "../runtime_file.c"
/*============================================================
ACHIEVEMENTS

View File

@ -53,7 +53,7 @@
#include <queues/message_queue.h>
#include <queues/task_queue.h>
#include <features/features_cpu.h>
#include <file/runtime_file.h>
#include "runtime_file.h"
#ifdef HAVE_CONFIG_H
#include "config.h"

View File

@ -25,18 +25,19 @@
#include <stdio.h>
#include <ctype.h>
#include <retro_miscellaneous.h>
#include <file_path_special.h>
#include <dirs.h>
#include <core_info.h>
#include <configuration.h>
#include <file/file_path.h>
#include <retro_miscellaneous.h>
#include <streams/file_stream.h>
#include <formats/jsonsax_full.h>
#include <string/stdstring.h>
#include <verbosity.h>
#include <file/runtime_file.h>
#include "file_path_special.h"
#include "dirs.h"
#include "core_info.h"
#include "configuration.h"
#include "verbosity.h"
#include "runtime_file.h"
#define LOG_FILE_RUNTIME_FORMAT_STR "%u:%02u:%02u"
#define LOG_FILE_LAST_PLAYED_FORMAT_STR "%04u-%02u-%02u %02u:%02u:%02u"