diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 0875abc34..06f81c69c 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -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); diff --git a/polymer/eduke32/source/menus.c b/polymer/eduke32/source/menus.c index ac40dcca4..5f2510084 100644 --- a/polymer/eduke32/source/menus.c +++ b/polymer/eduke32/source/menus.c @@ -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",