mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 18:50:47 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@321 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
815c646e85
commit
fc172fe3ea
2 changed files with 5 additions and 3 deletions
|
@ -3480,6 +3480,7 @@ void displayrooms(short snum,long smoothratio)
|
|||
long tposx,tposy,i;
|
||||
short tang;
|
||||
long tiltcx,tiltcy,tiltcs=0; // JBF 20030807
|
||||
extern long rendmode;
|
||||
|
||||
p = &ps[snum];
|
||||
|
||||
|
@ -3489,7 +3490,7 @@ void displayrooms(short snum,long smoothratio)
|
|||
pub = 0;
|
||||
}
|
||||
|
||||
if( ud.overhead_on == 2 || ud.show_help || p->cursectnum == -1)
|
||||
if( ud.overhead_on == 2 || ud.show_help || (p->cursectnum == -1 && rendmode != 4))
|
||||
return;
|
||||
|
||||
smoothratio = min(max(smoothratio,0),65536);
|
||||
|
@ -3499,7 +3500,8 @@ void displayrooms(short snum,long smoothratio)
|
|||
if(ud.pause_on || ps[snum].on_crane > -1) smoothratio = 65536;
|
||||
|
||||
sect = p->cursectnum;
|
||||
if(sect < 0 || sect >= MAXSECTORS) return;
|
||||
if(rendmode != 4)
|
||||
if(sect < 0 || sect >= MAXSECTORS) return;
|
||||
|
||||
dointerpolations(smoothratio);
|
||||
|
||||
|
|
|
@ -1612,7 +1612,7 @@ cheat_for_port_credits:
|
|||
"GNU General Public License version 2 as published by the",
|
||||
"Free Software Foundation. See GNU.TXT for details.",
|
||||
"",
|
||||
"Thanks to these people for their input and contributions:",
|
||||
"Thanks to the following people for their contributions:",
|
||||
"",
|
||||
"Adam Fazakerley",
|
||||
"Ed Coolidge",
|
||||
|
|
Loading…
Reference in a new issue