Change file name case sensitivity to lower case (#249)

To mirror how it is in refactor PR
This commit is contained in:
GeckoEidechse 2022-08-25 00:30:30 +02:00 committed by GitHub
parent a37ef3ee98
commit cf9743e9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 21 additions and 21 deletions

View File

@ -564,9 +564,9 @@
<ClInclude Include="sourceinterface.h" />
<ClInclude Include="squirrel.h" />
<ClInclude Include="state.h" />
<ClInclude Include="ExploitFixes.h" />
<ClInclude Include="ExploitFixes_UTF8Parser.h" />
<ClInclude Include="NSMem.h" />
<ClInclude Include="exploitfixes.h" />
<ClInclude Include="exploitfixes_utf8parser.h" />
<ClInclude Include="nsmem.h" />
<ClInclude Include="version.h" />
</ItemGroup>
<ItemGroup>
@ -628,7 +628,7 @@
<ClCompile Include="sourceconsole.cpp" />
<ClCompile Include="sourceinterface.cpp" />
<ClCompile Include="squirrel.cpp" />
<ClCompile Include="ExploitFixes.cpp" />
<ClCompile Include="exploitfixes.cpp" />
<ClCompile Include="version.cpp" />
</ItemGroup>
<ItemGroup>

View File

@ -1497,7 +1497,7 @@
<ClInclude Include="clientvideooverrides.h">
<Filter>Header Files\Client</Filter>
</ClInclude>
<ClInclude Include="ExploitFixes_UTF8Parser.h">
<ClInclude Include="exploitfixes_utf8parser.h">
<Filter>Source Files\Shared\Exploit Fixes\UTF8Parser</Filter>
</ClInclude>
<ClInclude Include="version.h">
@ -1509,10 +1509,10 @@
<ClInclude Include="ns_version.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="ExploitFixes.h">
<ClInclude Include="exploitfixes.h">
<Filter>Header Files\Shared\ExploitFixes</Filter>
</ClInclude>
<ClInclude Include="NSMem.h">
<ClInclude Include="nsmem.h">
<Filter>Header Files\Shared\ExploitFixes</Filter>
</ClInclude>
<ClInclude Include="scriptutility.h">
@ -1679,7 +1679,7 @@
<ClCompile Include="clientvideooverrides.cpp">
<Filter>Source Files\Client</Filter>
</ClCompile>
<ClCompile Include="ExploitFixes.cpp">
<ClCompile Include="exploitfixes.cpp">
<Filter>Source Files\Shared\Exploit Fixes</Filter>
</ClCompile>
<ClCompile Include="version.cpp">

View File

@ -4,7 +4,7 @@
#include "hookutils.h"
#include <fstream>
#include <filesystem>
#include "NSMem.h"
#include "nsmem.h"
namespace fs = std::filesystem;

View File

@ -127,7 +127,7 @@ DWORD WINAPI ConsoleInputThread(PVOID pThreadParameter)
return 0;
}
#include "NSMem.h"
#include "nsmem.h"
void InitialiseDedicated(HMODULE engineAddress)
{
spdlog::info("InitialiseDedicated");

View File

@ -3,7 +3,7 @@
#include "dedicatedmaterialsystem.h"
#include "hookutils.h"
#include "gameutils.h"
#include "NSMem.h"
#include "nsmem.h"
typedef HRESULT (*__stdcall D3D11CreateDeviceType)(
void* pAdapter,

View File

@ -51,7 +51,7 @@
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/error/en.h"
#include "ExploitFixes.h"
#include "exploitfixes.h"
#include "scriptjson.h"
typedef void (*initPluginFuncPtr)(void* (*getPluginObject)(PluginObject));

View File

@ -1,8 +1,8 @@
#include "pch.h"
#include "ExploitFixes.h"
#include "ExploitFixes_UTF8Parser.h"
#include "NSMem.h"
#include "exploitfixes.h"
#include "exploitfixes_utf8parser.h"
#include "nsmem.h"
#include "cvar.h"
#include "gameutils.h"
@ -15,7 +15,7 @@ ConVar* ns_exploitfixes_log;
if (SHOULD_LOG) \
{ \
std::stringstream stream; \
stream << "ExploitFixes.cpp: " << BLOCK_PREFIX << s; \
stream << "exploitfixes.cpp: " << BLOCK_PREFIX << s; \
spdlog::error(stream.str()); \
} \
return false; \
@ -546,7 +546,7 @@ void ExploitFixes::LoadCallback_Full(HMODULE baseAddress)
KHook::_allHooks.clear();
ns_exploitfixes_log =
new ConVar("ns_exploitfixes_log", "1", FCVAR_GAMEDLL, "Whether to log whenever ExploitFixes.cpp blocks/corrects something");
new ConVar("ns_exploitfixes_log", "1", FCVAR_GAMEDLL, "Whether to log whenever exploitfixes.cpp blocks/corrects something");
HookEnabler hook;
ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x2a8a50, &GetEntByIndexHook, reinterpret_cast<LPVOID*>(&GetEntByIndex));

View File

@ -45,7 +45,7 @@ constexpr int Team_PlayerArray_AddedLength = NEW_MAX_PLAYERS - 32;
constexpr int Team_PlayerArray_AddedSize = PAD_NUMBER(Team_PlayerArray_AddedLength * 8, 4);
constexpr int Team_AddedSize = Team_PlayerArray_AddedSize;
#include "NSMem.h"
#include "nsmem.h"
template <class T> void ChangeOffset(void* addr, unsigned int offset)
{
NSMem::BytePatch((uintptr_t)addr, (BYTE*)&offset, sizeof(T));

View File

@ -2,7 +2,7 @@
#include "miscserverfixes.h"
#include "hookutils.h"
#include "NSMem.h"
#include "nsmem.h"
void InitialiseMiscServerFixes(HMODULE baseAddress)
{

View File

@ -71,7 +71,7 @@ int GetCurrentGamemodeMaxPlayersHook()
return maxPlayers;
}
#include "NSMem.h"
#include "nsmem.h"
void InitialisePlaylistHooks(HMODULE baseAddress)
{
RegisterConCommand("setplaylist", SetPlaylistCommand, "Sets the current playlist", FCVAR_NONE);

View File

@ -14,7 +14,7 @@
#include <filesystem>
#include <thread>
#include "configurables.h"
#include "NSMem.h"
#include "nsmem.h"
const char* AUTHSERVER_VERIFY_STRING = "I am a northstar server!";