Browse Source

Merge pull request #4012 from sanikoyes/Pr-linke-fail-disable-3d

Fix link error when disable_3d=yes
Rémi Verschelde 9 years ago
parent
commit
6e86a05350
1 changed files with 2 additions and 1 deletions
  1. 2 1
      scene/main/viewport.cpp

+ 2 - 1
scene/main/viewport.cpp

@@ -894,6 +894,7 @@ void Viewport::_camera_remove(Camera* p_camera) {
 	}
 	}
 }
 }
 
 
+#ifndef _3D_DISABLED
 void Viewport::_camera_make_next_current(Camera* p_exclude) {
 void Viewport::_camera_make_next_current(Camera* p_exclude) {
 
 
 	for(Set<Camera*>::Element *E=cameras.front();E;E=E->next()) {
 	for(Set<Camera*>::Element *E=cameras.front();E;E=E->next()) {
@@ -909,7 +910,7 @@ void Viewport::_camera_make_next_current(Camera* p_exclude) {
 
 
 	}
 	}
 }
 }
-
+#endif
 
 
 void Viewport::set_transparent_background(bool p_enable) {
 void Viewport::set_transparent_background(bool p_enable) {