Fix camera texture aspect ratio in hardware renderer

It wasn't respecting the map's pixel ratio setting. This wouldn't have
been very noticeable with the default pixel ratio of 1.2 but it was
very obvious with 1.8.
This commit is contained in:
James Le Cuirot 2021-03-18 22:29:19 +00:00 committed by Christoph Oelckers
parent 229b065289
commit 8ef02544a7
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ sector_t* RenderView(player_t* player)
screen->RenderTextureView(camtex, [=](IntRect& bounds)
{
FRenderViewpoint texvp;
float ratio = camtex->aspectRatio;
float ratio = camtex->aspectRatio / Level->info->pixelstretch;
RenderViewpoint(texvp, camera, &bounds, fov, ratio, ratio, false, false);
});
});