From 60b629e57f73710b2edf335740a6ac4a90df2893 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Mon, 28 Dec 2020 05:19:23 +0200 Subject: [PATCH] Move display related objects to display parrent --- bdk/{gfx => display}/di.c | 0 bdk/{gfx => display}/di.h | 0 bdk/{gfx => display}/di.inl | 0 bdk/soc/hw_init.c | 2 +- bootloader/gfx/tui.c | 2 +- bootloader/hos/hos.c | 2 +- bootloader/hos/secmon_exo.c | 2 +- bootloader/hos/sept.c | 2 +- bootloader/main.c | 2 +- nyx/nyx_gui/frontend/gui.c | 2 +- nyx/nyx_gui/frontend/gui_info.c | 2 +- nyx/nyx_gui/frontend/gui_options.c | 2 +- nyx/nyx_gui/frontend/gui_tools.c | 2 +- nyx/nyx_gui/hos/hos.c | 2 +- nyx/nyx_gui/hos/sept.c | 2 +- nyx/nyx_gui/nyx.c | 2 +- 16 files changed, 13 insertions(+), 13 deletions(-) rename bdk/{gfx => display}/di.c (100%) rename bdk/{gfx => display}/di.h (100%) rename bdk/{gfx => display}/di.inl (100%) diff --git a/bdk/gfx/di.c b/bdk/display/di.c similarity index 100% rename from bdk/gfx/di.c rename to bdk/display/di.c diff --git a/bdk/gfx/di.h b/bdk/display/di.h similarity index 100% rename from bdk/gfx/di.h rename to bdk/display/di.h diff --git a/bdk/gfx/di.inl b/bdk/display/di.inl similarity index 100% rename from bdk/gfx/di.inl rename to bdk/display/di.inl diff --git a/bdk/soc/hw_init.c b/bdk/soc/hw_init.c index 5bbaf073..8f09ca6b 100644 --- a/bdk/soc/hw_init.c +++ b/bdk/soc/hw_init.c @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include #include diff --git a/bootloader/gfx/tui.c b/bootloader/gfx/tui.c index 266b3bba..fef5483c 100644 --- a/bootloader/gfx/tui.c +++ b/bootloader/gfx/tui.c @@ -15,7 +15,7 @@ * along with this program. If not, see . */ -#include +#include #include "tui.h" #include "../config.h" #include diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index 7ed87123..3f1898a0 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -25,7 +25,7 @@ #include "sept.h" #include "secmon_exo.h" #include "../config.h" -#include +#include #include #include #include diff --git a/bootloader/hos/secmon_exo.c b/bootloader/hos/secmon_exo.c index 0ccc088b..f365fa6c 100644 --- a/bootloader/hos/secmon_exo.c +++ b/bootloader/hos/secmon_exo.c @@ -20,7 +20,7 @@ #include "hos.h" #include "../config.h" -#include +#include #include #include #include diff --git a/bootloader/hos/sept.c b/bootloader/hos/sept.c index b109a565..49410b91 100644 --- a/bootloader/hos/sept.c +++ b/bootloader/hos/sept.c @@ -20,7 +20,7 @@ #include "fss.h" #include "sept.h" #include "../config.h" -#include +#include #include #include #include diff --git a/bootloader/main.c b/bootloader/main.c index af5ee699..37ae76d4 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -22,7 +22,7 @@ #include #include "config.h" -#include +#include #include #include "gfx/logos.h" #include "gfx/tui.h" diff --git a/nyx/nyx_gui/frontend/gui.c b/nyx/nyx_gui/frontend/gui.c index e58e5f7e..235f91db 100644 --- a/nyx/nyx_gui/frontend/gui.c +++ b/nyx/nyx_gui/frontend/gui.c @@ -27,7 +27,7 @@ #include "../config.h" #include -#include +#include #include #include #include diff --git a/nyx/nyx_gui/frontend/gui_info.c b/nyx/nyx_gui/frontend/gui_info.c index 111ab9b5..d3c79381 100644 --- a/nyx/nyx_gui/frontend/gui_info.c +++ b/nyx/nyx_gui/frontend/gui_info.c @@ -17,7 +17,7 @@ */ #include "gui.h" -#include +#include #include "../config.h" #include "../hos/hos.h" #include "../hos/pkg1.h" diff --git a/nyx/nyx_gui/frontend/gui_options.c b/nyx/nyx_gui/frontend/gui_options.c index 7b624b2a..d8d5a3d5 100644 --- a/nyx/nyx_gui/frontend/gui_options.c +++ b/nyx/nyx_gui/frontend/gui_options.c @@ -19,7 +19,7 @@ #include "gui.h" #include "../config.h" #include -#include +#include #include #include #include diff --git a/nyx/nyx_gui/frontend/gui_tools.c b/nyx/nyx_gui/frontend/gui_tools.c index caac525c..d9031d0d 100644 --- a/nyx/nyx_gui/frontend/gui_tools.c +++ b/nyx/nyx_gui/frontend/gui_tools.c @@ -24,7 +24,7 @@ #include "fe_emummc_tools.h" #include #include "../config.h" -#include +#include #include "../hos/pkg1.h" #include "../hos/pkg2.h" #include "../hos/hos.h" diff --git a/nyx/nyx_gui/hos/hos.c b/nyx/nyx_gui/hos/hos.c index becacdf2..41d11700 100644 --- a/nyx/nyx_gui/hos/hos.c +++ b/nyx/nyx_gui/hos/hos.c @@ -23,7 +23,7 @@ #include "hos.h" #include "sept.h" #include "../config.h" -#include +#include #include #include #include diff --git a/nyx/nyx_gui/hos/sept.c b/nyx/nyx_gui/hos/sept.c index 013e7e82..eff6e4ac 100644 --- a/nyx/nyx_gui/hos/sept.c +++ b/nyx/nyx_gui/hos/sept.c @@ -19,7 +19,7 @@ #include "hos.h" #include "sept.h" #include "../config.h" -#include +#include #include #include #include diff --git a/nyx/nyx_gui/nyx.c b/nyx/nyx_gui/nyx.c index 5ecc52ac..998f0bfc 100644 --- a/nyx/nyx_gui/nyx.c +++ b/nyx/nyx_gui/nyx.c @@ -22,7 +22,7 @@ #include #include "config.h" -#include +#include #include #include "hos/hos.h" #include