Skip to content

Commit 7bb8e6f

Browse files
committed
xrGame: fix some undefined reference
1 parent 7500f22 commit 7bb8e6f

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/xrCore/net_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class XRCORE_API NET_Packet
113113
~W_guard() { *guarded = false; }
114114
};
115115
void w(const void* p, u32 count);
116-
IC void w_seek(u32 pos, const void* p, u32 count);
116+
void w_seek(u32 pos, const void* p, u32 count);
117117
IC u32 w_tell() { return B.count; }
118118
// writing - utilities
119119
IC void w_float(float a)

src/xrGame/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/ui/UIList
8282
list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/ui/UIListWnd.cpp")
8383
list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/ui/UIListWnd_script.cpp")
8484
list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/ui/UITextBanner.cpp")
85-
list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../xrServerEntities/PHNetState.cpp")
8685

8786
list(REMOVE_ITEM ${PROJECT_NAME}__INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/./atlas_stalkercs_v1.h")
8887
list(REMOVE_ITEM ${PROJECT_NAME}__INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/./battleye.h")

src/xrGame/ai/monsters/rats/ai_rat_behaviour.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "StdAfx.h"
1010
#include "ai_rat.h"
11+
#include "ai_rat_impl.h"
1112
#include "rat_state_manager.h"
1213
#include "ai_space.h"
1314
#include "xrAICore/Navigation/game_level_cross_table.h"

src/xrGame/visual_memory_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ CVisibleObject* CVisualMemoryManager::visible_object(const CGameObject* game_obj
620620
return (&*I);
621621
}
622622

623-
IC squad_mask_type CVisualMemoryManager::mask() const
623+
squad_mask_type CVisualMemoryManager::mask() const
624624
{
625625
if (!m_stalker)
626626
return (squad_mask_type(-1));

src/xrGame/visual_memory_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class CVisualMemoryManager
137137
IC const RAW_VISIBLES& raw_objects() const;
138138
IC const NOT_YET_VISIBLES& not_yet_visible_objects() const;
139139
const CVisionParameters& current_state() const;
140-
IC squad_mask_type mask() const;
140+
squad_mask_type mask() const;
141141

142142
public:
143143
#ifdef DEBUG

0 commit comments

Comments
 (0)