about summary refs log tree commit diff stats
path: root/082scenario_screen.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 17:08:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 17:08:01 -0700
commitc7fde8d4e4175b436bc8db92bedd231261827e2c (patch)
treebb8093fcbb2784253a1ff58ff5a4908517c21581 /082scenario_screen.cc
parentc7a836797abcbc65c39e7c3cae2ae88b7b878916 (diff)
downloadmu-c7fde8d4e4175b436bc8db92bedd231261827e2c.tar.gz
3272
Move global constants into their own section since we seem to be having
trouble linking in 'extern const' variables when manually cleaving mu.cc
into separate compilation units.
Diffstat (limited to '082scenario_screen.cc')
-rw-r--r--082scenario_screen.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/082scenario_screen.cc b/082scenario_screen.cc
index 110a7831..01750bb0 100644
--- a/082scenario_screen.cc
+++ b/082scenario_screen.cc
@@ -143,10 +143,10 @@ assert(Next_predefined_global_for_scenarios < Reserved_for_tests);
 // initialize a default-space.
 assert(Name[tmp_recipe.at(0)][""] < Max_variables_in_scenarios);
 
-:(before "End Globals")
-// Scenario Globals.
+:(before "End Constants")
+// Fixed Scenario Locations.
 const int SCREEN = Next_predefined_global_for_scenarios++;
-// End Scenario Globals.
+// End Fixed Scenario Locations.
 
 //: give 'screen' a fixed location in scenarios
 :(before "End Special Scenario Variable Names(r)")