From 306a76cb444102bc207ee16e8a65aa9e90bbd37a Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 5 Mar 2023 12:32:38 -0400 Subject: global: Start work on making the codebase match without inlining It seems more, and more obvious that the codebase was originally compiled without inlining. --- include/pso/TMainTask.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/pso/TMainTask.h') diff --git a/include/pso/TMainTask.h b/include/pso/TMainTask.h index b97192b..b73d69d 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.m_down, child, bit <<= 1) { \ if (flags & bit) { \ child->one_prefix##_##suffix(); \ } else { \ @@ -34,7 +34,7 @@ TL_OBJECTS TL_OBJECTS #undef o -class TMainTask : public TObject { +class TMainTask : private TObject { public: u32 task_flags; u32 mbr_0x20; -- cgit v1.2.3-13-gbd6f