mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
CON: in showview*, use new aspect determination if r_usenewaspect is 1.
git-svn-id: https://svn.eduke32.com/eduke32@2895 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
d6e0009ec0
commit
32d721a055
1 changed files with 6 additions and 1 deletions
|
@ -2445,7 +2445,12 @@ nullquote:
|
|||
oprojhacks = glprojectionhacks;
|
||||
glprojectionhacks = 0;
|
||||
#endif
|
||||
setview(x1,y1,x2,y2);
|
||||
{
|
||||
int32_t o = newaspect_enable;
|
||||
newaspect_enable = r_usenewaspect;
|
||||
setview(x1,y1,x2,y2);
|
||||
newaspect_enable = o;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (!ud.pause_on && ((ud.show_help == 0 && (!net_server && ud.multimode < 2) && !(g_player[myconnectindex].ps->gm&MODE_MENU))
|
||||
|
|
Loading…
Reference in a new issue