about summary refs log tree commit diff stats
path: root/080display.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 17:06:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 17:06:49 -0700
commitc7a836797abcbc65c39e7c3cae2ae88b7b878916 (patch)
tree9f1759bad97dab4971ef9c22bfc89ee77193b9a1 /080display.cc
parent1ba81b0f57f965f390e09f40c5f70eb9931c7498 (diff)
downloadmu-c7a836797abcbc65c39e7c3cae2ae88b7b878916.tar.gz
3271
Disallow defining multiple globals at once.
Diffstat (limited to '080display.cc')
-rw-r--r--080display.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/080display.cc b/080display.cc
index f40b40c8..6ee4bd71 100644
--- a/080display.cc
+++ b/080display.cc
@@ -5,7 +5,8 @@
 //:: Display management
 
 :(before "End Globals")
-int Display_row = 0, Display_column = 0;
+int Display_row = 0;
+int Display_column = 0;
 bool Autodisplay = true;
 
 :(before "End Primitive Recipe Declarations")