summaryrefslogtreecommitdiffstats
path: root/src/core/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/main.cpp')
-rw-r--r--src/core/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 0b1dc6a1..2c3c83f9 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -938,8 +938,7 @@ RenderScene_new(void)
}
// TODO
-bool FredIsInFirstPersonCam(void) { return true; } // this seems to give the best result in all cases
-
+bool FredIsInFirstPersonCam(void) { return false; }
void
RenderEffects_new(void)
{
@@ -959,10 +958,11 @@ if(gbRenderWorld2)
if(gbRenderVehicles)
CRenderer::RenderVehicles();
}else{
-if(gbRenderVehicles)
- CRenderer::RenderVehicles();
+ // flipped these two, seems to give the best result
if(gbRenderWorld2)
CRenderer::RenderWorld(2); // transparent
+if(gbRenderVehicles)
+ CRenderer::RenderVehicles();
}
// better render these after transparent world
if(gbRenderFadingInEntities)