mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-16 20:27:36 -04:00
fix functions not returning values (#1926)
This commit is contained in:
@@ -406,12 +406,12 @@ void J2DPicture::setBlendRatio(f32 param_0, f32 param_1) {
|
||||
|
||||
/* 80020338-80020368 01AC78 0030+00 0/0 1/0 0/0 .text append__10J2DPictureFPCcf */
|
||||
bool J2DPicture::append(char const* param_0, f32 param_1) {
|
||||
insert(param_0, mTextureCount, param_1);
|
||||
return insert(param_0, mTextureCount, param_1);
|
||||
}
|
||||
|
||||
/* 80020368-8002039C 01ACA8 0034+00 0/0 1/0 0/0 .text insert__10J2DPictureFPCcUcf */
|
||||
void J2DPicture::insert(char const* param_0, u8 param_1, f32 param_2) {
|
||||
insert(param_0, NULL, param_1, param_2);
|
||||
bool J2DPicture::insert(char const* param_0, u8 param_1, f32 param_2) {
|
||||
return insert(param_0, NULL, param_1, param_2);
|
||||
}
|
||||
|
||||
/* 8002039C-800203E0 01ACDC 0044+00 0/0 3/3 0/0 .text fopMsgM_createExpHeap__FUlP7JKRHeap
|
||||
|
||||
Reference in New Issue
Block a user