summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2024-01-23 01:04:32 -0800
committerJasper St. Pierre <jstpierre@mecheye.net>2024-01-23 01:04:32 -0800
commita2b9822e5cfbf23ec166cf5989694d360560a7a4 (patch)
treef6da00e9003034af844513502a126de04ab5c8d7 /include/JSystem/J2DGraph
parent357aae5e371bb1442b2100748019ac9f5d9e53b5 (diff)
minor matches
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DPicture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/J2DGraph/J2DPicture.h b/include/JSystem/J2DGraph/J2DPicture.h
index ffa9bd5f..8b9974d9 100644
--- a/include/JSystem/J2DGraph/J2DPicture.h
+++ b/include/JSystem/J2DGraph/J2DPicture.h
@@ -56,9 +56,9 @@ public:
const ResTIMG * changeTexture(const char*, u8);
void drawFullSet(f32, f32, f32, f32, J2DBinding, J2DMirror, bool, Mtx*);
void draw(f32, f32, f32, f32, bool, bool, bool);
- void draw(f32 x, f32 y, bool, bool, bool) {
+ void draw(f32 x, f32 y, bool mirrorX, bool mirrorY, bool tumble) {
if (mNumTexture > 0)
- draw(x, y, mpTexture[0]->getWidth(), mpTexture[0]->getHeight(), false, false, false);
+ draw(x, y, mpTexture[0]->getWidth(), mpTexture[0]->getHeight(), mirrorX, mirrorY, tumble);
}
void drawOut(const JGeometry::TBox2<f32>&, const JGeometry::TBox2<f32>&);
void drawTexCoord(f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, Mtx*);