mirror of
https://github.com/zeldaret/tp
synced 2026-06-14 14:28:14 -04:00
Improving compatibility with standard cpp compiler (#2920)
* Improving compatibility with standard cpp compiler * Add __REGISTER macro for non mwcc compatibility * Fix for PR comments * fix missing define for revolution * Simplifying cSAngle conversion
This commit is contained in:
@@ -2579,7 +2579,9 @@ void dMenu_Collect3D_c::toItem3Dpos(f32 param_0, f32 param_1, f32 param_2, cXyz*
|
||||
#pragma pop
|
||||
|
||||
void dMenu_Collect3D_c::calcViewMtx(Mtx param_0) {
|
||||
mDoMtx_lookAt(param_0, &cXyz(0.0f, 0.0f, -1000.0f), &cXyz::Zero, &cXyz(0.0f, 1.0f, 0.0f), 0);
|
||||
cXyz pos1(0.0f, 0.0f, -1000.0f);
|
||||
cXyz pos2(0.0f, 1.0f, 0.0f);
|
||||
mDoMtx_lookAt(param_0, &pos1, &cXyz::Zero, &pos2, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user