Advertisement
fastman92

Untitled

Feb 3rd, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1.     searchIndex = v46 & 0x1FF;
  2.     // entryFromSearchList = this->m_apNodesSearchLists[nodeIndex];              
  3.     // pointerToEntryFromSearchList = &this->m_apNodesSearchLists[nodeIndex];
  4.  
  5.     /*
  6.     struct CPathNode
  7.     {
  8.       CPathNode *field_0;
  9.       CPathNode **field_4;
  10.       ...
  11.     }
  12.     */
  13.    
  14.    
  15.     ////
  16.     pathNode->field_0 = this->m_apNodesSearchLists[searchIndex];
  17.     pathNode->field_4 = &this->m_apNodesSearchLists[searchIndex];
  18.    
  19.     if ( this->m_apNodesSearchLists[searchIndex] )
  20.         this->m_apNodesSearchLists[searchIndex]->field_4 = &pathNode->field_0;
  21.    
  22.     //
  23.     this->m_apNodesSearchLists[searchIndex] = pathNode;
  24.     ////
  25.    
  26.    
  27.     pathNode->m_wSearchList = v46;
  28.  
  29.     ++this->m_dwTotalNumNodesInSearchList;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement