Skip to content

Commit

Permalink
исправлено хранение индексов аи-нод под большие аи-сетки.
Browse files Browse the repository at this point in the history
  • Loading branch information
abramcumner committed May 7, 2018
1 parent ec111c6 commit 84d7c3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions xray/utils/xrAI/vertex_manager_fixed.h
Expand Up @@ -20,8 +20,8 @@ struct CVertexManagerFixed {
template<typename T2>
struct _vertex : public T1<T2> {
typedef _index_type _index_type;
_index_type _index : 8*sizeof(_index_type) - mask;
_index_type _opened : mask;
_index_type _index;
_index_type _opened;

IC _index_type index() const
{
Expand Down
4 changes: 2 additions & 2 deletions xray/xrGame/vertex_manager_fixed.h
Expand Up @@ -20,8 +20,8 @@ struct CVertexManagerFixed {
template<typename T2>
struct _vertex : public T1<T2> {
typedef _index_type _index_type;
_index_type _index : 8*sizeof(_index_type) - mask;
_index_type _opened : mask;
_index_type _index;
_index_type _opened;

IC _index_type index() const
{
Expand Down

0 comments on commit 84d7c3b

Please sign in to comment.