diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-12 13:19:31 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-12 13:19:31 -0400 |
commit | eee869308a52fccb12fd02eba47fcaa5494d9bea (patch) | |
tree | 50bce4087c10cb77b842939773dbead6f3f7aa56 /include | |
parent | 0b509743fd75f7e7b524f1f60e15f030782fe4c6 (diff) |
context: Update context to match current state
Diffstat (limited to 'include')
-rw-r--r-- | include/pso/TMainTask.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pso/TMainTask.h b/include/pso/TMainTask.h index d8b5b6e..03319a6 100644 --- a/include/pso/TMainTask.h +++ b/include/pso/TMainTask.h @@ -10,7 +10,7 @@ if (flags != old_flags) { \ TMainTask *child; \ u32 bit = 1; \ - FOREACH_NODE_NODECL_MULTI_ITER(TMainTask, main_task.down(), child, bit <<= 1) { \ + FOREACH_NODE_NODECL_MULTI_ITER(TMainTask, main_task.down(), child, bit <<= 1) { \ if (flags & bit) { \ child->one_prefix##_##suffix(); \ } else { \ |