src/main.cc

changeset 850
a3d72b0e916d
parent 848
68410477c8bb
child 852
cbd89b33f70d
--- a/src/main.cc	Sun Jul 27 02:55:27 2014 +0300
+++ b/src/main.cc	Sun Jul 27 03:14:27 2014 +0300
@@ -40,7 +40,7 @@
 const Vertex g_origin (0.0f, 0.0f, 0.0f);
 const Matrix g_identity ({1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f});
 
-CFGENTRY (Bool, firstStart, true);
+CFGENTRY (Bool, FirstStart, true);
 
 // =============================================================================
 //
@@ -72,10 +72,10 @@
 
 	// If this is the first start, get the user to configuration. Especially point
 	// them to the profile tab, it's the most important form to fill in.
-	if (cfg::firstStart)
+	if (cfg::FirstStart)
 	{
 		(new ConfigDialog (ConfigDialog::ProfileTab))->exec();
-		cfg::firstStart = false;
+		cfg::FirstStart = false;
 		Config::Save();
 	}
 

mercurial