Skip to content

Commit

Permalink
Fix xrCore/Crypto include paths case.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Nov 7, 2015
1 parent 5746d41 commit bf9f3d1
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src/utils/mp_configs_verifyer/configs_common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CONFIGS_COMMON_INCLUDED
#define CONFIGS_COMMON_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

namespace mp_anticheat
{
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mp_configs_verifyer/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "xrCore/xrCore.h"
#include "xrCore/LocatorAPI.h"
#include "xrCore/ppmd_compressor.h"
#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"


#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mp_configs_verifyer/xr_dsa_verifyer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef XR_DSA_VERIFYER_INCLUDED
#define XR_DSA_VERIFYER_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

class xr_dsa_verifyer
{
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mp_screenshots_info/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "xrCore/xrCore.h"
#include "xrCore/LocatorAPI.h"
#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

#include <stdio.h>
#include <conio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mp_screenshots_info/xr_dsa_signer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef XR_DSA_SIGNER_INCLUDED
#define XR_DSA_SIGNER_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

typedef fastdelegate::FastDelegate1< long > sha_process_yielder;

Expand Down
8 changes: 4 additions & 4 deletions src/xrCore/xrCore.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -439,10 +439,10 @@
<ClInclude Include="Containers\AssociativeVector.hpp" />
<ClInclude Include="Containers\AssociativeVectorComparer.hpp" />
<ClInclude Include="cpuid.h" />
<ClInclude Include="crypto\crypto.h" />
<ClInclude Include="crypto\crypto_api_def.h" />
<ClInclude Include="crypto\xr_dsa.h" />
<ClInclude Include="crypto\xr_sha.h" />
<ClInclude Include="Crypto\crypto.h" />
<ClInclude Include="Crypto\crypto_api_def.h" />
<ClInclude Include="Crypto\xr_dsa.h" />
<ClInclude Include="Crypto\xr_sha.h" />
<ClInclude Include="Debug\dxerr.h" />
<ClInclude Include="Debug\DXGetErrorDescription.inl">
<FileType>CppHeader</FileType>
Expand Down
26 changes: 13 additions & 13 deletions src/xrCore/xrCore.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<Filter Include="Debug core\DxErr">
<UniqueIdentifier>{0a558484-bd93-4e59-90eb-227898f999f9}</UniqueIdentifier>
</Filter>
<Filter Include="crypto">
<Filter Include="Crypto">
<UniqueIdentifier>{c56e1246-919c-4516-ad31-b9d3b4dadbc4}</UniqueIdentifier>
</Filter>
</ItemGroup>
Expand Down Expand Up @@ -372,14 +372,14 @@
<ClCompile Include="Debug\dxerr.cpp">
<Filter>Debug core\DxErr</Filter>
</ClCompile>
<ClCompile Include="crypto\crypto.cpp">
<Filter>crypto</Filter>
<ClCompile Include="Crypto\crypto.cpp">
<Filter>Crypto</Filter>
</ClCompile>
<ClCompile Include="crypto\xr_dsa.cpp">
<Filter>crypto</Filter>
<ClCompile Include="Crypto\xr_dsa.cpp">
<Filter>Crypto</Filter>
</ClCompile>
<ClCompile Include="crypto\xr_sha.cpp">
<Filter>crypto</Filter>
<ClCompile Include="Crypto\xr_sha.cpp">
<Filter>Crypto</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -791,14 +791,14 @@
<ClInclude Include="..\common\LevelStructure.hpp">
<Filter>Kernel\Common</Filter>
</ClInclude>
<ClInclude Include="crypto\crypto.h">
<Filter>crypto</Filter>
<ClInclude Include="Crypto\crypto.h">
<Filter>Crypto</Filter>
</ClInclude>
<ClInclude Include="crypto\crypto_api_def.h">
<Filter>crypto</Filter>
<ClInclude Include="Crypto\crypto_api_def.h">
<Filter>Crypto</Filter>
</ClInclude>
<ClInclude Include="crypto\xr_dsa.h">
<Filter>crypto</Filter>
<ClInclude Include="Crypto\xr_dsa.h">
<Filter>Crypto</Filter>
</ClInclude>
<ClInclude Include="crypto\xr_sha.h">
<Filter>crypto</Filter>
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/configs_common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CONFIGS_COMMON_INCLUDED
#define CONFIGS_COMMON_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

namespace mp_anticheat
{
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/game_cl_mp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "xrCore/ppmd_compressor.h"
#include "xrCore/rt_compressor.h"
#include "game_cl_mp_snd_messages.h"
#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

#include "reward_event_generator.h"
#include "game_cl_base_weapon_usage_statistic.h"
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/screenshots_common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef SCREENSHOTS_COMMON_INCLUDED
#define SCREENSHOTS_COMMON_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

namespace screenshots
{
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/stats_submitter.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "gamespy/GameSpy_ATLAS.h"
#include "profile_data_types.h"
#include "gsc_dsigned_ltx.h"
#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

class CGameSpy_Full;

Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/xr_dsa_signer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef XR_DSA_SIGNER_INCLUDED
#define XR_DSA_SIGNER_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

typedef fastdelegate::FastDelegate1< long > sha_process_yielder;

Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/xr_dsa_verifyer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef XR_DSA_VERIFYER_INCLUDED
#define XR_DSA_VERIFYER_INCLUDED

#include "xrCore/crypto/crypto.h"
#include "xrCore/Crypto/crypto.h"

class xr_dsa_verifyer
{
Expand Down

0 comments on commit bf9f3d1

Please sign in to comment.