mirror of
https://github.com/zeldaret/botw
synced 2026-07-01 03:20:19 -04:00
Add #ifdef declarations for NON_MATCHING code
This commit is contained in:
@@ -57,10 +57,12 @@ VFRVec3f::VFRVec3f() : value{0, 0, 0}, prev_value{0, 0, 0}, mean{0, 0, 0} {}
|
||||
|
||||
VFRVec3f::VFRVec3f(const sead::Vector3f& value) : value{value}, prev_value{value}, mean{value} {}
|
||||
|
||||
// NON_MATCHING: float regalloc
|
||||
// float regalloc
|
||||
#ifdef NON_MATCHING
|
||||
void VFRVec3f::updateStats() {
|
||||
updateStatsImpl(value, &prev_value, &mean);
|
||||
}
|
||||
#endif
|
||||
|
||||
void VFRVec3f::operator*=(f32 scalar) {
|
||||
VFR::multiply(&value, scalar);
|
||||
|
||||
Reference in New Issue
Block a user