mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-05 02:37:50 -04:00
dfa8efa97b
* 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
23 lines
429 B
C++
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),
|
|
};
|