Skip to content

Commit bf9f3d1

Browse files
author
nitrocaster
committed
Fix xrCore/Crypto include paths case.
1 parent 5746d41 commit bf9f3d1

File tree

13 files changed

+28
-28
lines changed

13 files changed

+28
-28
lines changed

src/utils/mp_configs_verifyer/configs_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef CONFIGS_COMMON_INCLUDED
22
#define CONFIGS_COMMON_INCLUDED
33

4-
#include "xrCore/crypto/crypto.h"
4+
#include "xrCore/Crypto/crypto.h"
55

66
namespace mp_anticheat
77
{

src/utils/mp_configs_verifyer/pch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "xrCore/xrCore.h"
55
#include "xrCore/LocatorAPI.h"
66
#include "xrCore/ppmd_compressor.h"
7-
#include "xrCore/crypto/crypto.h"
7+
#include "xrCore/Crypto/crypto.h"
88

99

1010
#include <stdio.h>

src/utils/mp_configs_verifyer/xr_dsa_verifyer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef XR_DSA_VERIFYER_INCLUDED
22
#define XR_DSA_VERIFYER_INCLUDED
33

4-
#include "xrCore/crypto/crypto.h"
4+
#include "xrCore/Crypto/crypto.h"
55

66
class xr_dsa_verifyer
77
{

src/utils/mp_screenshots_info/pch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "xrCore/xrCore.h"
55
#include "xrCore/LocatorAPI.h"
6-
#include "xrCore/crypto/crypto.h"
6+
#include "xrCore/Crypto/crypto.h"
77

88
#include <stdio.h>
99
#include <conio.h>

src/utils/mp_screenshots_info/xr_dsa_signer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef XR_DSA_SIGNER_INCLUDED
22
#define XR_DSA_SIGNER_INCLUDED
33

4-
#include "xrCore/crypto/crypto.h"
4+
#include "xrCore/Crypto/crypto.h"
55

66
typedef fastdelegate::FastDelegate1< long > sha_process_yielder;
77

src/xrCore/xrCore.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,10 @@
439439
<ClInclude Include="Containers\AssociativeVector.hpp" />
440440
<ClInclude Include="Containers\AssociativeVectorComparer.hpp" />
441441
<ClInclude Include="cpuid.h" />
442-
<ClInclude Include="crypto\crypto.h" />
443-
<ClInclude Include="crypto\crypto_api_def.h" />
444-
<ClInclude Include="crypto\xr_dsa.h" />
445-
<ClInclude Include="crypto\xr_sha.h" />
442+
<ClInclude Include="Crypto\crypto.h" />
443+
<ClInclude Include="Crypto\crypto_api_def.h" />
444+
<ClInclude Include="Crypto\xr_dsa.h" />
445+
<ClInclude Include="Crypto\xr_sha.h" />
446446
<ClInclude Include="Debug\dxerr.h" />
447447
<ClInclude Include="Debug\DXGetErrorDescription.inl">
448448
<FileType>CppHeader</FileType>

src/xrCore/xrCore.vcxproj.filters

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<Filter Include="Debug core\DxErr">
119119
<UniqueIdentifier>{0a558484-bd93-4e59-90eb-227898f999f9}</UniqueIdentifier>
120120
</Filter>
121-
<Filter Include="crypto">
121+
<Filter Include="Crypto">
122122
<UniqueIdentifier>{c56e1246-919c-4516-ad31-b9d3b4dadbc4}</UniqueIdentifier>
123123
</Filter>
124124
</ItemGroup>
@@ -372,14 +372,14 @@
372372
<ClCompile Include="Debug\dxerr.cpp">
373373
<Filter>Debug core\DxErr</Filter>
374374
</ClCompile>
375-
<ClCompile Include="crypto\crypto.cpp">
376-
<Filter>crypto</Filter>
375+
<ClCompile Include="Crypto\crypto.cpp">
376+
<Filter>Crypto</Filter>
377377
</ClCompile>
378-
<ClCompile Include="crypto\xr_dsa.cpp">
379-
<Filter>crypto</Filter>
378+
<ClCompile Include="Crypto\xr_dsa.cpp">
379+
<Filter>Crypto</Filter>
380380
</ClCompile>
381-
<ClCompile Include="crypto\xr_sha.cpp">
382-
<Filter>crypto</Filter>
381+
<ClCompile Include="Crypto\xr_sha.cpp">
382+
<Filter>Crypto</Filter>
383383
</ClCompile>
384384
</ItemGroup>
385385
<ItemGroup>
@@ -791,14 +791,14 @@
791791
<ClInclude Include="..\common\LevelStructure.hpp">
792792
<Filter>Kernel\Common</Filter>
793793
</ClInclude>
794-
<ClInclude Include="crypto\crypto.h">
795-
<Filter>crypto</Filter>
794+
<ClInclude Include="Crypto\crypto.h">
795+
<Filter>Crypto</Filter>
796796
</ClInclude>
797-
<ClInclude Include="crypto\crypto_api_def.h">
798-
<Filter>crypto</Filter>
797+
<ClInclude Include="Crypto\crypto_api_def.h">
798+
<Filter>Crypto</Filter>
799799
</ClInclude>
800-
<ClInclude Include="crypto\xr_dsa.h">
801-
<Filter>crypto</Filter>
800+
<ClInclude Include="Crypto\xr_dsa.h">
801+
<Filter>Crypto</Filter>
802802
</ClInclude>
803803
<ClInclude Include="crypto\xr_sha.h">
804804
<Filter>crypto</Filter>

src/xrGame/configs_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef CONFIGS_COMMON_INCLUDED
22
#define CONFIGS_COMMON_INCLUDED
33

4-
#include "xrCore/crypto/crypto.h"
4+
#include "xrCore/Crypto/crypto.h"
55

66
namespace mp_anticheat
77
{

src/xrGame/game_cl_mp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "xrCore/ppmd_compressor.h"
3636
#include "xrCore/rt_compressor.h"
3737
#include "game_cl_mp_snd_messages.h"
38-
#include "xrCore/crypto/crypto.h"
38+
#include "xrCore/Crypto/crypto.h"
3939

4040
#include "reward_event_generator.h"
4141
#include "game_cl_base_weapon_usage_statistic.h"

src/xrGame/screenshots_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef SCREENSHOTS_COMMON_INCLUDED
22
#define SCREENSHOTS_COMMON_INCLUDED
33

4-
#include "xrCore/crypto/crypto.h"
4+
#include "xrCore/Crypto/crypto.h"
55

66
namespace screenshots
77
{

0 commit comments

Comments
 (0)