diff --git a/src/client/cl_scrn.c b/src/client/cl_scrn.c
index 70114bfc..a513a8d5 100644
--- a/src/client/cl_scrn.c
+++ b/src/client/cl_scrn.c
@@ -16,6 +16,12 @@
  * this program; if not, write to the Free Software Foundation, Inc., 59
  * Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  *
+ * =======================================================================
+ *
+ * This file implements the 2D stuff. For example the HUD and
+ * the networkgraph.
+ *
+ * =======================================================================
  */
 
 #include "header/client.h"
@@ -29,7 +35,6 @@ int			scr_draw_loading;
 
 vrect_t		scr_vrect; /* position of render window on screen */
 
-
 cvar_t		*scr_viewsize;
 cvar_t		*scr_conspeed;
 cvar_t		*scr_centertime;
@@ -195,7 +200,6 @@ void SCR_CenterPrint (char *str) {
 	Con_ClearNotify ();
 }
 
-
 void SCR_DrawCenterString (void) {
 	char	*start;
 	int		l;
@@ -634,7 +638,6 @@ void SCR_TileClear (void) {
 
 }
 
-
 #define STAT_MINUS	10
 char	*sb_nums[2][11] = {
 	{
@@ -1212,3 +1215,4 @@ void SCR_UpdateScreen (void) {
 	}
 	re.EndFrame();
 }
+