From 8273207a31f97e01bccb432af5bc469466337415 Mon Sep 17 00:00:00 2001 From: Jaby Date: Sun, 2 Oct 2022 16:45:02 +0200 Subject: [PATCH] Correct header file extension --- include/PSX/GPU/{GPU.h => GPU.hpp} | 6 +++--- src/Library/src/BootLoader/gpu_boot.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename include/PSX/GPU/{GPU.h => GPU.hpp} (77%) diff --git a/include/PSX/GPU/GPU.h b/include/PSX/GPU/GPU.hpp similarity index 77% rename from include/PSX/GPU/GPU.h rename to include/PSX/GPU/GPU.hpp index 739b3e20..c94ef54b 100644 --- a/include/PSX/GPU/GPU.h +++ b/include/PSX/GPU/GPU.hpp @@ -1,5 +1,5 @@ -#ifndef __JABYENGINE_GPU_H__ -#define __JABYENGINE_GPU_H__ +#ifndef __JABYENGINE_GPU_HPP__ +#define __JABYENGINE_GPU_HPP__ #include "../System/IOPorts/GPU_IO.hpp" namespace GPU { @@ -14,4 +14,4 @@ namespace GPU { } } -#endif //!__JABYENGINE_GPU_H__ \ No newline at end of file +#endif //!__JABYENGINE_GPU_HPP__ \ No newline at end of file diff --git a/src/Library/src/BootLoader/gpu_boot.cpp b/src/Library/src/BootLoader/gpu_boot.cpp index fd2b6846..6d8b4d0d 100644 --- a/src/Library/src/BootLoader/gpu_boot.cpp +++ b/src/Library/src/BootLoader/gpu_boot.cpp @@ -1,6 +1,6 @@ #include "../../include/GPU/GPU.h" #include -#include +#include #include "splash_image_boot.hpp"