diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2026-01-05 03:55:35 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-05 03:55:35 -0800 |
| commit | 22dc7a37dbc844b0eccba65025cf7f0950b98259 (patch) | |
| tree | b8fc9158a2c8b9b8b2a025a5d5d2040d2473b333 /src/f_op | |
| parent | 767e3ba17ea514010cbc4f2015f8ffc1d4d87286 (diff) | |
fix functions not returning values (#3018)
Diffstat (limited to 'src/f_op')
| -rw-r--r-- | src/f_op/f_op_scene_req.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/f_op/f_op_scene_req.cpp b/src/f_op/f_op_scene_req.cpp index 94aed7f3e8..8c98a1693c 100644 --- a/src/f_op/f_op_scene_req.cpp +++ b/src/f_op/f_op_scene_req.cpp @@ -165,5 +165,5 @@ s32 fopScnRq_ReRequest(fpc_ProcID i_requestId, s16 i_procName, void* i_data) { } int fopScnRq_Handler() { - fpcNdRq_Handler(); + return fpcNdRq_Handler(); } |
