Skip to content

Commit

Permalink
Code format - (Clang-format)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 7, 2023
1 parent df90c36 commit 532381d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/map/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ class AStarNodes {
static int_fast32_t getTileWalkCost(const Creature &creature, const Tile* tile);

private:
#if defined(__SSE2__)
#if defined(__SSE2__)
alignas(16) uint32_t nodesTable[MAX_NODES];
alignas(64) int32_t calculatedNodes[MAX_NODES];
AStarNode nodes[MAX_NODES];
#else
#else
AStarNode nodes[MAX_NODES];
uint32_t nodesTable[MAX_NODES];
#endif
#endif
size_t curNode;
int_fast32_t closedNodes;
bool openNodes[MAX_NODES];
Expand Down

0 comments on commit 532381d

Please sign in to comment.