No longer include file_path_special.h in gfx_display.h

This commit is contained in:
libretroadmin 2022-06-26 18:35:07 +02:00
parent 4e13134c40
commit 367dfd6e71
9 changed files with 18 additions and 9 deletions

View File

@ -30,7 +30,6 @@
#include <gfx/math/matrix_4x4.h>
#include "../retroarch.h"
#include "../file_path_special.h"
#include "../gfx/font_driver.h"
RETRO_BEGIN_DECLS

View File

@ -33,6 +33,7 @@
#include "font_driver.h"
#include "../configuration.h"
#include "../file_path_special.h"
#include "../msg_hash.h"
#include "../tasks/task_content.h"

View File

@ -43,6 +43,7 @@
#include "../../config.def.h"
#include "../../config.def.keybinds.h"
#include "../../driver.h"
#include "../../file_path_special.h"
#include "../menu_driver.h"
#include "../menu_cbs.h"

View File

@ -31,6 +31,7 @@
#endif
#include "../../configuration.h"
#include "../../file_path_special.h"
#include "../../core.h"
#include "../../core_info.h"
#include "../../core_option_manager.h"

View File

@ -22,8 +22,9 @@
#include "../menu_driver.h"
#include "../menu_cbs.h"
#include "../../retroarch.h"
#include "../../configuration.h"
#include "../../file_path_special.h"
#include "../../retroarch.h"
#include "../../core_option_manager.h"
#include "../../core_info.h"

View File

@ -34,6 +34,7 @@
#include <array/rhmap.h>
#include "../../config.def.h"
#include "../../file_path_special.h"
#if 0
#include "../../discord/discord.h"

View File

@ -51,6 +51,7 @@
#include "../../input/input_osk.h"
#include "../../configuration.h"
#include "../../file_path_special.h"
#include "../../gfx/drivers_font_renderer/bitmap.h"
#ifdef HAVE_LANGEXTRA

View File

@ -23,6 +23,7 @@
#include "menu_driver.h"
#include "menu_displaylist.h"
#include "../file_path_special.h"
#include "../retroarch.h"
#include "../core_info.h"
#include "../configuration.h"

View File

@ -15,18 +15,21 @@
*/
#include <stddef.h>
#include "menu_driver.h"
#include "menu_cbs.h"
#include "../retroarch.h"
#include "../configuration.h"
#include "../playlist.h"
#include "../libretro-db/libretrodb.h"
#include "../tasks/tasks_internal.h"
#include <compat/strcasestr.h>
#include <compat/strl.h>
#include <array/rbuf.h>
#include <array/rhmap.h>
#include "menu_driver.h"
#include "menu_cbs.h"
#include "../retroarch.h"
#include "../configuration.h"
#include "../file_path_special.h"
#include "../playlist.h"
#include "../libretro-db/libretrodb.h"
#include "../tasks/tasks_internal.h"
#define EX_ARENA_ALIGNMENT 8
#define EX_ARENA_BLOCK_SIZE (64 * 1024)
#define EX_ARENA_ALIGN_UP(n, a) (((n) + (a) - 1) & ~((a) - 1))