We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6680f1 commit fd95cd9Copy full SHA for fd95cd9
rt_entt_codegen/shared/parallel.cc
@@ -4,7 +4,6 @@
4
#include <vector>
5
#include <type_traits>
6
#include <format>
7
-
8
#include "ecsact/lang-support/lang-cc.hh"
9
#include "rt_entt_codegen/shared/system_variant.hh"
10
#include "system_variant.hh"
@@ -184,7 +183,7 @@ auto ecsact::rt_entt_codegen::parallel::can_entities_parallel(
184
183
*/
185
static auto should_run_independently(ecsact_system_like_id id) -> bool {
186
// User has explicitly marked a system as not parallel; respect that.
187
- if(ecsact_meta_get_system_parallel_execution(id) == ECSACT_PARA_EXEC_DENY) {
+ if(ecsact_meta_get_system_parallel_execution(id) == ECSACT_PAR_EXEC_DENY) {
188
return true;
189
}
190
0 commit comments