Skip to content

Commit

Permalink
Give enough space for actionExecutorMem
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Oct 21, 2022
1 parent 69c378f commit 075e577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Game/IGameCommands.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class IGameCommands
spring::unsynced_map<std::string, TActionExecutor*> actionExecutors;
std::vector< std::pair<std::string, TActionExecutor*> > sortedExecutors;

std::array<uint8_t, 18432> actionExecutorMem;
std::array<uint8_t, 1 << 16> actionExecutorMem;

size_t actionExecMemIndex = 0;
// size_t numActionExecutors = 0;
Expand Down

0 comments on commit 075e577

Please sign in to comment.