diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2026-02-11 00:14:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-11 00:14:18 -0800 |
| commit | a07ec61d666522ef022bf490a2b95b43e081884b (patch) | |
| tree | 678ab1cd3a5fd53dacec121bc19b55bf48a4a888 /src/JSystem/J2DGraph/J2DPicture.cpp | |
| parent | e537b32c66cca1bed986862ff6d16e2484f53286 (diff) | |
fix compiler warnings (#3094)
Diffstat (limited to 'src/JSystem/J2DGraph/J2DPicture.cpp')
| -rw-r--r-- | src/JSystem/J2DGraph/J2DPicture.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/JSystem/J2DGraph/J2DPicture.cpp b/src/JSystem/J2DGraph/J2DPicture.cpp index efeaca2ebf..65ce621e40 100644 --- a/src/JSystem/J2DGraph/J2DPicture.cpp +++ b/src/JSystem/J2DGraph/J2DPicture.cpp @@ -471,8 +471,7 @@ const ResTIMG* J2DPicture::changeTexture(char const* resName, u8 param_1) { return changeTexture((ResTIMG*)J2DScreen::getNameResource(resName), param_1); } -static bool dummy_weak_order(JUTTexture* tex) { - J2DPicture* picture; +static bool dummy_weak_order(J2DPicture* picture, JUTTexture* tex) { return picture->append(tex, 1.0f); } |
