mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-16 12:24:45 -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
21 lines
525 B
C++
21 lines
525 B
C++
/**
|
|
* f_op_scene_iter.cpp
|
|
* Framework - Scene Process Iteration
|
|
*/
|
|
|
|
#include "f_op/f_op_scene_iter.h"
|
|
#include "SSystem/SComponent/c_list_iter.h"
|
|
#include "SSystem/SComponent/c_tag_iter.h"
|
|
#include "f_op/f_op_scene_tag.h"
|
|
|
|
void* fopScnIt_Judge(fop_ScnItFunc i_judgeFunc, void* i_data) {
|
|
struct {
|
|
fop_ScnItFunc func;
|
|
void* data;
|
|
} userdata;
|
|
|
|
userdata.func = i_judgeFunc;
|
|
userdata.data = i_data;
|
|
return cLsIt_Judge(&g_fopScnTg_SceneList, (cNdIt_JudgeFunc)cTgIt_JudgeFilter, &userdata);
|
|
}
|