Move core_info.c to root dir

This commit is contained in:
twinaphex 2014-08-02 14:04:43 +02:00
parent 548a67e2d4
commit 41a5641a6f
9 changed files with 15 additions and 15 deletions

View File

@ -29,7 +29,7 @@ OBJ = frontend/frontend.o \
core_options.o \ core_options.o \
compat/compat.o \ compat/compat.o \
cheats.o \ cheats.o \
frontend/info/core_info.o \ core_info.o \
conf/config_file.o \ conf/config_file.o \
screenshot.o \ screenshot.o \
gfx/scaler/scaler.o \ gfx/scaler/scaler.o \

View File

@ -50,7 +50,7 @@ OBJ = frontend/platform/platform_emscripten.o \
audio/cc_resampler.o \ audio/cc_resampler.o \
audio/null.o \ audio/null.o \
performance.o \ performance.o \
frontend/info/core_info.o \ core_info.o \
camera/rwebcam.o camera/rwebcam.o
HAVE_OPENGL = 1 HAVE_OPENGL = 1

View File

@ -29,7 +29,7 @@ OBJ = frontend/frontend.o \
compat/compat.o \ compat/compat.o \
screenshot.o \ screenshot.o \
cheats.o \ cheats.o \
frontend/info/core_info.o \ core_info.o \
audio/utils.o \ audio/utils.o \
input/overlay.o \ input/overlay.o \
fifo_buffer.o \ fifo_buffer.o \

View File

@ -14,14 +14,14 @@
*/ */
#include "core_info.h" #include "core_info.h"
#include "../../general.h" #include "general.h"
#include "../../file.h" #include "file.h"
#include "../../file_ext.h" #include "file_ext.h"
#include "../../file_extract.h" #include "file_extract.h"
#include "../../config.def.h" #include "config.def.h"
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "../../config.h" #include "config.h"
#endif #endif
static core_info_list_t *global_core_list; static core_info_list_t *global_core_list;

View File

@ -18,8 +18,8 @@
#ifndef CORE_INFO_H_ #ifndef CORE_INFO_H_
#define CORE_INFO_H_ #define CORE_INFO_H_
#include "../../conf/config_file.h" #include "conf/config_file.h"
#include "../../file.h" #include "file.h"
#include <stddef.h> #include <stddef.h>
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -21,7 +21,7 @@
#include <stdint.h> #include <stdint.h>
#include "boolean.h" #include "boolean.h"
#include "file_list.h" #include "file_list.h"
#include "frontend/info/core_info.h" #include "core_info.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {

View File

@ -25,7 +25,7 @@
#include "../../boolean.h" #include "../../boolean.h"
#include "../../general.h" #include "../../general.h"
#include "menu_navigation.h" #include "menu_navigation.h"
#include "../info/core_info.h" #include "../../core_info.h"
#include "../../file_list.h" #include "../../file_list.h"
#include "../../history.h" #include "../../history.h"
#include "../../input/input_common.h" #include "../../input/input_common.h"

View File

@ -552,7 +552,7 @@ FRONTEND
#endif #endif
#include "../frontend/platform/platform_null.c" #include "../frontend/platform/platform_null.c"
#include "../frontend/info/core_info.c" #include "../core_info.c"
/*============================================================ /*============================================================
MAIN MAIN

View File

@ -224,7 +224,7 @@
<ClCompile Include="..\..\frontend\menu\menu_common.c" /> <ClCompile Include="..\..\frontend\menu\menu_common.c" />
<ClCompile Include="..\..\frontend\menu\menu_input_line_cb.c" /> <ClCompile Include="..\..\frontend\menu\menu_input_line_cb.c" />
<ClCompile Include="..\..\frontend\menu\menu_navigation.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="..\..\frontend\platform\platform_null.c" />
<ClCompile Include="..\..\gfx\d3d9\d3d.cpp" /> <ClCompile Include="..\..\gfx\d3d9\d3d.cpp" />
<ClCompile Include="..\..\gfx\context\d3d_ctx.cpp" /> <ClCompile Include="..\..\gfx\context\d3d_ctx.cpp" />