From d3908f531fd5593d19e21ee036789b61db387809 Mon Sep 17 00:00:00 2001
From: curt <curt>
Date: Fri, 4 Jun 1999 21:38:31 +0000
Subject: [PATCH] Fixed a bug that caused the hud fonts to disappear when ever
 the moon was being drawn.

---
 Simulator/Astro/moon.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Simulator/Astro/moon.cxx b/Simulator/Astro/moon.cxx
index 1c3029f5b..104cf2dc2 100644
--- a/Simulator/Astro/moon.cxx
+++ b/Simulator/Astro/moon.cxx
@@ -390,7 +390,7 @@ void Moon::newImage()
 	// set lighting parameters
 	xglLightfv(GL_LIGHT0, GL_AMBIENT, white );
 	xglLightfv(GL_LIGHT0, GL_DIFFUSE, white );
-	xglEnable( GL_CULL_FACE );
+	// xglEnable( GL_CULL_FACE );
 	xglMaterialfv(GL_FRONT, GL_AMBIENT, black);
 	xglMaterialfv(GL_FRONT, GL_DIFFUSE, moonColor);