This commit is contained in:
LagoLunatic
2025-05-21 18:07:36 -04:00
parent 0b1706bec2
commit d097c85eb0
8 changed files with 11 additions and 7 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ void dDemo_camera_c::JSGSetProjectionFovy(f32 v) {
f32 dDemo_camera_c::JSGGetProjectionAspect() const {
camera_class* view = getView();
if (view == NULL)
return 1.3333334f;
return (4.0f/3.0f);
return view->mAspect;
}