mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
fix UB in DemoSa_FrameUpdateMatrix. (#933)
This commit is contained in:
parent
f3c930917b
commit
f8498478c4
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ void func_8098E5C8(DemoSa* this, GlobalContext* globalCtx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 DemoSa_FrameUpdateMatrix(DemoSa* this) {
|
s32 DemoSa_FrameUpdateMatrix(DemoSa* this) {
|
||||||
SkelAnime_Update(&this->skelAnime);
|
return SkelAnime_Update(&this->skelAnime);
|
||||||
}
|
}
|
||||||
|
|
||||||
CsCmdActorAction* DemoSa_GetNpcAction(GlobalContext* globalCtx, s32 idx) {
|
CsCmdActorAction* DemoSa_GetNpcAction(GlobalContext* globalCtx, s32 idx) {
|
||||||
|
|
Loading…
Reference in a new issue