Skip to content

Commit 0ad7e6b

Browse files
committed
xrServerEntities: fix case-sensitivite includes
1 parent d43a305 commit 0ad7e6b

23 files changed

+32
-32
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#include "stdafx.h"
1+
#include "StdAfx.h"
22
#include "PHSynchronize.h"

src/xrServerEntities/alife_human_brain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Description : ALife human brain class
77
////////////////////////////////////////////////////////////////////////////
88

9-
#include "stdafx.h"
9+
#include "StdAfx.h"
1010
#include "alife_human_brain.h"
1111
#include "Common/object_broker.h"
1212
#include "xrServer_Objects_ALife_Monsters.h"

src/xrServerEntities/alife_monster_brain.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Description : ALife monster brain class
77
////////////////////////////////////////////////////////////////////////////
88

9-
#include "stdafx.h"
9+
#include "StdAfx.h"
1010
#include "alife_monster_brain.h"
1111
#include "Common/object_broker.h"
1212
#include "xrServer_Objects_ALife_Monsters.h"
@@ -137,15 +137,15 @@ void CALifeMonsterBrain::select_task(const bool forced)
137137
void CALifeMonsterBrain::update(const bool forced)
138138
{
139139
#if 0 // def DEBUG
140-
if (!Level().MapManager().HasMapLocation("debug_stalker",object().ID)) {
141-
CMapLocation *map_location =
142-
Level().MapManager().AddMapLocation(
143-
"debug_stalker",
144-
object().ID
145-
);
146-
147-
map_location->SetHint (object().name_replace());
148-
}
140+
if (!Level().MapManager().HasMapLocation("debug_stalker",object().ID)) {
141+
CMapLocation *map_location =
142+
Level().MapManager().AddMapLocation(
143+
"debug_stalker",
144+
object().ID
145+
);
146+
147+
map_location->SetHint (object().name_replace());
148+
}
149149
#endif
150150

151151
select_task(forced);

src/xrServerEntities/alife_space.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "stdafx.h"
1+
#include "StdAfx.h"
22
#include "alife_space.h"
33
#include "xrCore/xr_token.h"
44

src/xrServerEntities/character_info.cpp

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

6-
#include "stdafx.h"
6+
#include "StdAfx.h"
77
#include "character_info.h"
88

99
#ifdef XRGAME_EXPORTS

src/xrServerEntities/gametype_chooser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "stdafx.h"
1+
#include "StdAfx.h"
22
#pragma hdrstop
33

44
#include "gametype_chooser.h"

src/xrServerEntities/object_factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Description : Object factory
77
////////////////////////////////////////////////////////////////////////////
88

9-
#include "stdafx.h"
9+
#include "StdAfx.h"
1010
#include "object_factory.h"
1111
#include "Common/object_broker.h"
1212

src/xrServerEntities/object_factory_register.cpp

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

1414
// server entities includes
1515
#include "xrServer_Objects_ALife_All.h"
16-
#include "xrServer_Objects_ALife_Smartcovers.h"
16+
#include "xrServer_Objects_Alife_Smartcovers.h"
1717
#include "clsid_game.h"
1818

1919
// client entities includes

src/xrServerEntities/script_ini_file.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Description : Script ini file class
77
////////////////////////////////////////////////////////////////////////////
88

9-
#include "stdafx.h"
9+
#include "StdAfx.h"
1010
#include "script_ini_file.h"
1111
#include "xrScriptEngine/script_engine.hpp"
1212
#include "ai_space.h"

src/xrServerEntities/script_token_list.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Description : Script token list class
77
////////////////////////////////////////////////////////////////////////////
88

9-
#include "stdafx.h"
9+
#include "StdAfx.h"
1010
#include "script_token_list.h"
1111
#include <algorithm>
1212

0 commit comments

Comments
 (0)