diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2024-08-22 23:17:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 13:17:24 -0700 |
| commit | d3420ffe8d38185b66cb67a6605fb3d89cb72b36 (patch) | |
| tree | d205cdabe6f717090805af9ba5d6414b91d97f75 /src/d | |
| parent | 18f4489dd6e7996152bc385ec89a340dccaafe8a (diff) | |
jstudio particle and sound OK (#2194)
* Work on object-sound
* object-particle OK
* object-sound OK
* JStudio_JAudio2 control OK
* JStudio_JParticle control OK
* JStage object OK
* JStage ambient light OK
Diffstat (limited to 'src/d')
| -rw-r--r-- | src/d/d_demo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_demo.cpp b/src/d/d_demo.cpp index f6fd0805b5..8258a21048 100644 --- a/src/d/d_demo.cpp +++ b/src/d/d_demo.cpp @@ -1669,9 +1669,9 @@ s32 dDemo_actor_c::JSGFindNodeID(char const* param_0) const { /* 8003A088-8003A0C8 0349C8 0040+00 1/0 0/0 0/0 .text * JSGGetNodeTransformation__13dDemo_actor_cCFUlPA4_f */ -int dDemo_actor_c::JSGGetNodeTransformation(u32 param_0, Mtx param_1) const { +bool dDemo_actor_c::JSGGetNodeTransformation(u32 param_0, Mtx param_1) const { MTXCopy(mModel->getAnmMtx((u16)param_0), param_1); - return 1; + return true; } /* 8003A0C8-8003A0D0 034A08 0008+00 1/0 0/0 0/0 .text JSGGetAnimationFrameMax__13dDemo_actor_cCFv |
