diff options
| author | Max Roncace <me@caseif.net> | 2026-01-06 07:45:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-06 04:45:15 -0800 |
| commit | fd863582d657bb2c70f7ac73d5f534c6b0be7aa6 (patch) | |
| tree | adf9a30b0fe674c718918ee058154ecdbe84e133 /src/f_pc/f_pc_draw.cpp | |
| parent | 3679e7abab82df6447f7b55aa472b5b9c8062fb0 (diff) | |
f_pc mostly linked for Wii/Shield (#3015)
Diffstat (limited to 'src/f_pc/f_pc_draw.cpp')
| -rw-r--r-- | src/f_pc/f_pc_draw.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/f_pc/f_pc_draw.cpp b/src/f_pc/f_pc_draw.cpp index 6ea0b429f8..5a5b220f82 100644 --- a/src/f_pc/f_pc_draw.cpp +++ b/src/f_pc/f_pc_draw.cpp @@ -9,10 +9,10 @@ #include "f_pc/f_pc_node.h" #include "f_pc/f_pc_pause.h" -s32 fpcDw_Execute(base_process_class* i_proc) { +int fpcDw_Execute(base_process_class* i_proc) { if (!fpcPause_IsEnable(i_proc, 2)) { layer_class* save_layer; - s32 ret; + int ret; process_method_func draw_func; save_layer = fpcLy_CurrentLayer(); @@ -31,8 +31,8 @@ s32 fpcDw_Execute(base_process_class* i_proc) { return 0; } -s32 fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func) { - s32 ret; +int fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func) { + int ret; cAPIGph_BeforeOfDraw(); ret = i_iterHandler(i_func); cAPIGph_AfterOfDraw(); |
