texteff.c
changeset 2548 97ada3bd2702
parent 2470 a3b2f1f8ab3d
child 2549 f1d3b383d557
--- a/texteff.c	Fri Oct 21 12:24:55 2005 +0000
+++ b/texteff.c	Sat Oct 22 06:39:32 2005 +0000
@@ -39,14 +39,14 @@
 TileIndex _animated_tile_list[256];
 
 
-int _textmessage_width = 0;
-bool _textmessage_dirty = true;
-bool _textmessage_visible = false;
+static int _textmessage_width = 0;
+static bool _textmessage_dirty = true;
+static bool _textmessage_visible = false;
 
-const int _textmessage_box_left = 10; // Pixels from left
-const int _textmessage_box_y = 150;  // Height of box
-const int _textmessage_box_bottom = 30; // Pixels from bottom
-const int _textmessage_box_max_width = 400; // Max width of box
+static const int _textmessage_box_left = 10; // Pixels from left
+static const int _textmessage_box_y = 150;  // Height of box
+static const int _textmessage_box_bottom = 30; // Pixels from bottom
+static const int _textmessage_box_max_width = 400; // Max width of box
 
 static Pixel _textmessage_backup[150 * 400]; // (y * max_width)
 
@@ -379,5 +379,3 @@
 const ChunkHandler _animated_tile_chunk_handlers[] = {
 	{ 'ANIT', SaveLoad_ANIT, SaveLoad_ANIT, CH_RIFF | CH_LAST},
 };
-
-