mirror of
https://github.com/libretro/RetroArch
synced 2024-12-27 15:29:23 +00:00
Move core_info.c to root dir
This commit is contained in:
parent
548a67e2d4
commit
41a5641a6f
2
Makefile
2
Makefile
@ -29,7 +29,7 @@ OBJ = frontend/frontend.o \
|
||||
core_options.o \
|
||||
compat/compat.o \
|
||||
cheats.o \
|
||||
frontend/info/core_info.o \
|
||||
core_info.o \
|
||||
conf/config_file.o \
|
||||
screenshot.o \
|
||||
gfx/scaler/scaler.o \
|
||||
|
@ -50,7 +50,7 @@ OBJ = frontend/platform/platform_emscripten.o \
|
||||
audio/cc_resampler.o \
|
||||
audio/null.o \
|
||||
performance.o \
|
||||
frontend/info/core_info.o \
|
||||
core_info.o \
|
||||
camera/rwebcam.o
|
||||
|
||||
HAVE_OPENGL = 1
|
||||
|
@ -29,7 +29,7 @@ OBJ = frontend/frontend.o \
|
||||
compat/compat.o \
|
||||
screenshot.o \
|
||||
cheats.o \
|
||||
frontend/info/core_info.o \
|
||||
core_info.o \
|
||||
audio/utils.o \
|
||||
input/overlay.o \
|
||||
fifo_buffer.o \
|
||||
|
@ -14,14 +14,14 @@
|
||||
*/
|
||||
|
||||
#include "core_info.h"
|
||||
#include "../../general.h"
|
||||
#include "../../file.h"
|
||||
#include "../../file_ext.h"
|
||||
#include "../../file_extract.h"
|
||||
#include "../../config.def.h"
|
||||
#include "general.h"
|
||||
#include "file.h"
|
||||
#include "file_ext.h"
|
||||
#include "file_extract.h"
|
||||
#include "config.def.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "../../config.h"
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
static core_info_list_t *global_core_list;
|
@ -18,8 +18,8 @@
|
||||
#ifndef CORE_INFO_H_
|
||||
#define CORE_INFO_H_
|
||||
|
||||
#include "../../conf/config_file.h"
|
||||
#include "../../file.h"
|
||||
#include "conf/config_file.h"
|
||||
#include "file.h"
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
@ -21,7 +21,7 @@
|
||||
#include <stdint.h>
|
||||
#include "boolean.h"
|
||||
#include "file_list.h"
|
||||
#include "frontend/info/core_info.h"
|
||||
#include "core_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "../../boolean.h"
|
||||
#include "../../general.h"
|
||||
#include "menu_navigation.h"
|
||||
#include "../info/core_info.h"
|
||||
#include "../../core_info.h"
|
||||
#include "../../file_list.h"
|
||||
#include "../../history.h"
|
||||
#include "../../input/input_common.h"
|
||||
|
@ -552,7 +552,7 @@ FRONTEND
|
||||
#endif
|
||||
#include "../frontend/platform/platform_null.c"
|
||||
|
||||
#include "../frontend/info/core_info.c"
|
||||
#include "../core_info.c"
|
||||
|
||||
/*============================================================
|
||||
MAIN
|
||||
|
@ -224,7 +224,7 @@
|
||||
<ClCompile Include="..\..\frontend\menu\menu_common.c" />
|
||||
<ClCompile Include="..\..\frontend\menu\menu_input_line_cb.c" />
|
||||
<ClCompile Include="..\..\frontend\menu\menu_navigation.c" />
|
||||
<ClCompile Include="..\..\frontend\info\core_info.c" />
|
||||
<ClCompile Include="..\..\core_info.c" />
|
||||
<ClCompile Include="..\..\frontend\platform\platform_null.c" />
|
||||
<ClCompile Include="..\..\gfx\d3d9\d3d.cpp" />
|
||||
<ClCompile Include="..\..\gfx\context\d3d_ctx.cpp" />
|
||||
|
Loading…
Reference in New Issue
Block a user