Skip to content

Commit fd95cd9

Browse files
committed
fix: wrong enum value
1 parent c6680f1 commit fd95cd9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rt_entt_codegen/shared/parallel.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include <vector>
55
#include <type_traits>
66
#include <format>
7-
87
#include "ecsact/lang-support/lang-cc.hh"
98
#include "rt_entt_codegen/shared/system_variant.hh"
109
#include "system_variant.hh"
@@ -184,7 +183,7 @@ auto ecsact::rt_entt_codegen::parallel::can_entities_parallel(
184183
*/
185184
static auto should_run_independently(ecsact_system_like_id id) -> bool {
186185
// User has explicitly marked a system as not parallel; respect that.
187-
if(ecsact_meta_get_system_parallel_execution(id) == ECSACT_PARA_EXEC_DENY) {
186+
if(ecsact_meta_get_system_parallel_execution(id) == ECSACT_PAR_EXEC_DENY) {
188187
return true;
189188
}
190189

0 commit comments

Comments
 (0)