mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Move core_option_manager to managers/
This commit is contained in:
parent
2c6d6a223c
commit
af2a33a8cb
@ -168,7 +168,7 @@ OBJ += frontend/frontend.o \
|
|||||||
input/input_overlay.o \
|
input/input_overlay.o \
|
||||||
patch.o \
|
patch.o \
|
||||||
libretro-common/queues/fifo_queue.o \
|
libretro-common/queues/fifo_queue.o \
|
||||||
core_options.o \
|
managers/core_option_manager.o \
|
||||||
libretro-common/compat/compat_fnmatch.o \
|
libretro-common/compat/compat_fnmatch.o \
|
||||||
libretro-common/compat/compat_posix_string.o \
|
libretro-common/compat/compat_posix_string.o \
|
||||||
managers/cheat_manager.o \
|
managers/cheat_manager.o \
|
||||||
|
@ -101,7 +101,7 @@ CONFIG FILE
|
|||||||
|
|
||||||
#include "../libretro-common/file/config_file.c"
|
#include "../libretro-common/file/config_file.c"
|
||||||
#include "../config_file_userdata.c"
|
#include "../config_file_userdata.c"
|
||||||
#include "../core_options.c"
|
#include "../managers/core_option_manager.c"
|
||||||
|
|
||||||
/*============================================================
|
/*============================================================
|
||||||
ACHIEVEMENTS
|
ACHIEVEMENTS
|
||||||
|
@ -24,9 +24,9 @@
|
|||||||
#include <retro_miscellaneous.h>
|
#include <retro_miscellaneous.h>
|
||||||
#include <string/stdstring.h>
|
#include <string/stdstring.h>
|
||||||
|
|
||||||
#include "libretro.h"
|
#include "../libretro.h"
|
||||||
|
|
||||||
#include "core_options.h"
|
#include "core_option_manager.h"
|
||||||
|
|
||||||
struct core_option
|
struct core_option
|
||||||
{
|
{
|
@ -14,8 +14,8 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CORE_OPTIONS_H__
|
#ifndef CORE_OPTION_MANAGER_H__
|
||||||
#define CORE_OPTIONS_H__
|
#define CORE_OPTION_MANAGER_H__
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
@ -27,7 +27,7 @@
|
|||||||
#include "../../input/input_config.h"
|
#include "../../input/input_config.h"
|
||||||
|
|
||||||
#include "../../core_info.h"
|
#include "../../core_info.h"
|
||||||
#include "../../core_options.h"
|
#include "../../managers/core_option_manager.h"
|
||||||
#include "../../managers/cheat_manager.h"
|
#include "../../managers/cheat_manager.h"
|
||||||
#include "../../general.h"
|
#include "../../general.h"
|
||||||
#include "../../performance.h"
|
#include "../../performance.h"
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include "../menu_hash.h"
|
#include "../menu_hash.h"
|
||||||
|
|
||||||
#include "../../core_info.h"
|
#include "../../core_info.h"
|
||||||
#include "../../core_options.h"
|
#include "../../managers/core_option_manager.h"
|
||||||
#include "../../managers/cheat_manager.h"
|
#include "../../managers/cheat_manager.h"
|
||||||
#include "../../general.h"
|
#include "../../general.h"
|
||||||
#include "../../retroarch.h"
|
#include "../../retroarch.h"
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
|
|
||||||
#include "../defaults.h"
|
#include "../defaults.h"
|
||||||
#include "../managers/cheat_manager.h"
|
#include "../managers/cheat_manager.h"
|
||||||
|
#include "../managers/core_option_manager.h"
|
||||||
#include "../general.h"
|
#include "../general.h"
|
||||||
#include "../retroarch.h"
|
#include "../retroarch.h"
|
||||||
#include "../system.h"
|
#include "../system.h"
|
||||||
@ -45,7 +46,6 @@
|
|||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
#include "../performance.h"
|
#include "../performance.h"
|
||||||
#include "../core_info.h"
|
#include "../core_info.h"
|
||||||
#include "../core_options.h"
|
|
||||||
|
|
||||||
#ifdef HAVE_CHEEVOS
|
#ifdef HAVE_CHEEVOS
|
||||||
#include "../cheevos.h"
|
#include "../cheevos.h"
|
||||||
|
@ -37,12 +37,12 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "autosave.h"
|
#include "autosave.h"
|
||||||
#include "core_info.h"
|
#include "core_info.h"
|
||||||
#include "core_options.h"
|
|
||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#include "performance.h"
|
#include "performance.h"
|
||||||
#include "movie.h"
|
#include "movie.h"
|
||||||
#include "retroarch.h"
|
#include "retroarch.h"
|
||||||
#include "runloop.h"
|
#include "runloop.h"
|
||||||
|
#include "managers/core_option_manager.h"
|
||||||
#include "managers/cheat_manager.h"
|
#include "managers/cheat_manager.h"
|
||||||
#include "managers/state_manager.h"
|
#include "managers/state_manager.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user