From c8048df5a6c7c4a130a3f2e9959163c9469bb410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Thu, 11 Jan 2018 16:13:17 +0100 Subject: [PATCH] Rename header files for testpaint --- test/testpaint/Addresses.cpp | 2 +- test/testpaint/{addresses.h => Addresses.h} | 0 test/testpaint/Compat.cpp | 2 +- test/testpaint/{data.h => Data.h} | 0 test/testpaint/Hook.cpp | 2 +- test/testpaint/{hook.h => Hook.h} | 0 test/testpaint/PaintIntercept.cpp | 2 +- test/testpaint/TestPaint.cpp | 2 +- test/testpaint/TestPaint.hpp | 2 +- test/testpaint/generate.cpp | 2 +- test/testpaint/main.cpp | 2 +- 11 files changed, 8 insertions(+), 8 deletions(-) rename test/testpaint/{addresses.h => Addresses.h} (100%) rename test/testpaint/{data.h => Data.h} (100%) rename test/testpaint/{hook.h => Hook.h} (100%) diff --git a/test/testpaint/Addresses.cpp b/test/testpaint/Addresses.cpp index 13ce59817f..0185c025a9 100644 --- a/test/testpaint/Addresses.cpp +++ b/test/testpaint/Addresses.cpp @@ -14,7 +14,7 @@ *****************************************************************************/ #pragma endregion -#include "addresses.h" +#include "Addresses.h" #if defined(__GNUC__) #ifdef __clang__ diff --git a/test/testpaint/addresses.h b/test/testpaint/Addresses.h similarity index 100% rename from test/testpaint/addresses.h rename to test/testpaint/Addresses.h diff --git a/test/testpaint/Compat.cpp b/test/testpaint/Compat.cpp index fb2b98c74c..3c22b28b55 100644 --- a/test/testpaint/Compat.cpp +++ b/test/testpaint/Compat.cpp @@ -23,7 +23,7 @@ #include #include #include -#include "addresses.h" +#include "Addresses.h" #define gRideEntries RCT2_ADDRESS(0x009ACFA4, rct_ride_entry *) #define gTileElementTilePointers RCT2_ADDRESS(0x013CE9A4, rct_tile_element *) diff --git a/test/testpaint/data.h b/test/testpaint/Data.h similarity index 100% rename from test/testpaint/data.h rename to test/testpaint/Data.h diff --git a/test/testpaint/Hook.cpp b/test/testpaint/Hook.cpp index 8548c6f354..f123b76baf 100644 --- a/test/testpaint/Hook.cpp +++ b/test/testpaint/Hook.cpp @@ -24,7 +24,7 @@ #include #endif // _WIN32 -#include "hook.h" +#include "Hook.h" void* _hookTableAddress = 0; sint32 _hookTableOffset = 0; diff --git a/test/testpaint/hook.h b/test/testpaint/Hook.h similarity index 100% rename from test/testpaint/hook.h rename to test/testpaint/Hook.h diff --git a/test/testpaint/PaintIntercept.cpp b/test/testpaint/PaintIntercept.cpp index edeea924f9..f5cee15263 100644 --- a/test/testpaint/PaintIntercept.cpp +++ b/test/testpaint/PaintIntercept.cpp @@ -15,7 +15,7 @@ #pragma endregion -#include "hook.h" +#include "Hook.h" #include "PaintIntercept.hpp" #include "FunctionCall.hpp" #include "TestPaint.hpp" diff --git a/test/testpaint/TestPaint.cpp b/test/testpaint/TestPaint.cpp index 052403e40e..f2dd716572 100644 --- a/test/testpaint/TestPaint.cpp +++ b/test/testpaint/TestPaint.cpp @@ -17,7 +17,7 @@ #include #include -#include "hook.h" +#include "Hook.h" #include "GeneralSupportHeightCall.hpp" #include "Printer.hpp" #include "SegmentSupportHeightCall.hpp" diff --git a/test/testpaint/TestPaint.hpp b/test/testpaint/TestPaint.hpp index 91e228d188..4d642da4c2 100644 --- a/test/testpaint/TestPaint.hpp +++ b/test/testpaint/TestPaint.hpp @@ -28,7 +28,7 @@ extern "C" #include } -#include "addresses.h" +#include "Addresses.h" #define gRideEntries RCT2_ADDRESS(0x009ACFA4, rct_ride_entry*) #define gSupportSegments RCT2_ADDRESS(0x0141E9B4, support_height) diff --git a/test/testpaint/generate.cpp b/test/testpaint/generate.cpp index 9e10057939..8572c4c211 100644 --- a/test/testpaint/generate.cpp +++ b/test/testpaint/generate.cpp @@ -26,7 +26,7 @@ #include "String.hpp" #include "Utils.hpp" -#include "data.h" +#include "Data.h" #include #include #include diff --git a/test/testpaint/main.cpp b/test/testpaint/main.cpp index 84ca7f271d..cffb3d8b17 100644 --- a/test/testpaint/main.cpp +++ b/test/testpaint/main.cpp @@ -28,7 +28,7 @@ #include "TestTrack.hpp" #include "Utils.hpp" -#include "data.h" +#include "Data.h" #include #include #include