diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-05 12:32:38 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-05 12:32:38 -0400 |
commit | 306a76cb444102bc207ee16e8a65aa9e90bbd37a (patch) | |
tree | d6e64d7496837bddb89c5ef34be5eca536de4103 /src | |
parent | cb40b0808a639fa0de330cb2b88574a0e8b4d2d5 (diff) |
global: Start work on making the codebase match without inlining
It seems more, and more obvious that the codebase was originally
compiled without inlining.
Diffstat (limited to 'src')
-rw-r--r-- | src/pso/TMainTask.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pso/TMainTask.cpp b/src/pso/TMainTask.cpp index 931a3ce..0458c3e 100644 --- a/src/pso/TMainTask.cpp +++ b/src/pso/TMainTask.cpp @@ -377,13 +377,13 @@ void TMainTask::init_main_task() { alt_heap = new THeap(0x17000, 16); #define o(var, dummy) \ var = new TObject(this); \ - var->set_name(var##_name); + var->m_name = var##_name; TL_OBJECTS #undef o } TMainTask::TMainTask() : TObject(NULL) { - set_name(TMainTask_name); + m_name = TMainTask_name; task_flags = 0; mbr_0x20 = 0; mbr_0x24 = 0; |