First pink screen!

This commit is contained in:
Lurs
2026-02-21 22:15:39 +01:00
parent 97e7a8b145
commit 8599684fae
34 changed files with 238 additions and 246 deletions
+4 -4
View File
@@ -38,12 +38,12 @@ inline void fopCamM_SetAngleY(camera_class* i_camera, s16 angle) {
i_camera->angle.y = angle;
}
inline void fopCamM_SetNear(camera_class* i_this, f32 near) {
i_this->near = near;
inline void fopCamM_SetNear(camera_class* i_this, f32 near_) {
i_this->near_ = near_;
}
inline void fopCamM_SetFar(camera_class* i_this, f32 far) {
i_this->far = far;
inline void fopCamM_SetFar(camera_class* i_this, f32 far_) {
i_this->far_ = far_;
}
inline void fopCamM_SetFovy(camera_class* i_this, f32 fovy) {
+2 -2
View File
@@ -43,8 +43,8 @@ struct view_class {
/* 0x000 */ leafdraw_class base;
/* 0x0C0 */ leafdraw_method_class* sub_method;
/* 0x0C4 */ u8 field_0xc4;
/* 0x0C8 */ f32 near;
/* 0x0CC */ f32 far;
/* 0x0C8 */ f32 near_;
/* 0x0CC */ f32 far_;
/* 0x0D0 */ f32 fovy;
/* 0x0D4 */ f32 aspect;
/* 0x0D8 */ lookat_class lookat;