Files
dusklight/src/f_pc/f_pc_line.cpp
T
TakaRikka dfa8efa97b project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

23 lines
429 B
C++

/**
* f_pc_line.cpp
* Framework - Process Line
*/
#include "f_pc/f_pc_line.h"
#include "f_pc/f_pc_node.h"
#include "global.h"
static node_list_class l_fpcLn_Line[16];
void fpcLn_Create() {
s32 i = ARRAY_SIZEU(l_fpcLn_Line);
node_list_class* line_node = l_fpcLn_Line;
while (i-- > 0)
cLs_Create(line_node++);
}
node_lists_tree_class g_fpcLn_Queue = {
l_fpcLn_Line,
ARRAY_SIZEU(l_fpcLn_Line),
};