summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2022-06-27 17:23:08 -0700
committerGitHub <noreply@github.com>2022-06-27 17:23:08 -0700
commitcd5b02450cf278cbeb2c8bb90be1ad22518938c7 (patch)
treed69e02aa4b1e45ae2865389a4d70c28969ebe475 /include/SSystem
parentfb9dd3cdee440e61d96ddd2efd0216a99df14997 (diff)
parent0b060164da0da9062813792880eb1304652022f1 (diff)
Merge pull request #200 from lepelog/event_data
Event data
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_xyz.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/SSystem/SComponent/c_xyz.h b/include/SSystem/SComponent/c_xyz.h
index e218303fc1..2492f92906 100644
--- a/include/SSystem/SComponent/c_xyz.h
+++ b/include/SSystem/SComponent/c_xyz.h
@@ -72,11 +72,7 @@ struct cXyz : Vec {
/* 80267128 */ s16 atan2sX_Z() const;
/* 80267150 */ s16 atan2sY_XZ() const;
- void setAll(f32 f) {
- z = f;
- y = f;
- x = f;
- }
+ void setAll(f32 f) { set(f, f, f); }
void setMin(const cXyz& other) {
if (x > other.x) {