From 143f691c06c520d728f7050d51740703ee1dca03 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 21 Oct 2022 19:56:48 +1100 Subject: [PATCH] - SW: Try to fix up the camera drawing a bit. * Slight pitch adjustment, plus factoring in that values of 0 constituted 100 under original game. * View screens in game are not actually 1:1 AR but 1.12:1 --- source/games/sw/src/jsector.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/games/sw/src/jsector.cpp b/source/games/sw/src/jsector.cpp index 8f3e0c1c2..0d0f01bbb 100644 --- a/source/games/sw/src/jsector.cpp +++ b/source/games/sw/src/jsector.cpp @@ -594,7 +594,7 @@ void JS_DrawCameras(PLAYER* pp, const DVector3& campos, double smoothratio) } // Set the horizon value. - auto camhoriz = maphoriz(100 - SP_TAG7(camactor)); + auto camhoriz = SP_TAG7(camactor); // If player is dead still then update at MoveSkip4 // rate. @@ -603,7 +603,7 @@ void JS_DrawCameras(PLAYER* pp, const DVector3& campos, double smoothratio) // Set up the tile for drawing - TileFiles.MakeCanvas(mirror[cnt].campic, 128, 128); + TileFiles.MakeCanvas(mirror[cnt].campic, 128, 114); { if (dist < MAXCAMDIST) @@ -616,7 +616,7 @@ void JS_DrawCameras(PLAYER* pp, const DVector3& campos, double smoothratio) } else { - drawroomstotile(camactor->spr.pos, camactor->user.sang, camhoriz, camactor->sector(), mirror[cnt].campic, smoothratio); + drawroomstotile(camactor->spr.pos, camactor->user.sang, maphoriz(150 - (camhoriz == 0 ? 100 : camhoriz)), camactor->sector(), mirror[cnt].campic, smoothratio); } } }