From fc172fe3ea4cf1ce2cf46e5ec534a8e029e69db2 Mon Sep 17 00:00:00 2001 From: terminx Date: Fri, 20 Oct 2006 01:17:32 +0000 Subject: [PATCH] git-svn-id: https://svn.eduke32.com/eduke32@321 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/game.c | 6 ++++-- polymer/eduke32/source/menus.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) 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",