summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2011-02-06 01:09:15 +0300
committerAndrey Nazarov <skuller@skuller.net>2011-02-06 17:32:57 +0300
commit2247a39d25b36046899c231f3f64a553af861dd3 (patch)
treef973fa539c4d897b706ace8a60f6cf46e32df1ef /src
parent4d041d6d745e8c5439a7d18119e44f7b14dc8077 (diff)
Spam console a bit less.
Shorten some text bars. Silence ref_gl version message.
Diffstat (limited to 'src')
-rw-r--r--src/files.c8
-rw-r--r--src/gl_main.c5
2 files changed, 7 insertions, 6 deletions
diff --git a/src/files.c b/src/files.c
index a4aeff9..af64f42 100644
--- a/src/files.c
+++ b/src/files.c
@@ -2898,7 +2898,7 @@ Unless total is true, reloads paks only up to base dir
================
*/
void FS_Restart( qboolean total ) {
- Com_Printf( "---------- FS_Restart ----------\n" );
+ Com_Printf( "----- FS_Restart -----\n" );
if( total ) {
// perform full reset
@@ -2913,7 +2913,7 @@ void FS_Restart( qboolean total ) {
FS_Path_f();
- Com_Printf( "--------------------------------\n" );
+ Com_Printf( "----------------------\n" );
}
/*
@@ -3029,7 +3029,7 @@ FS_Init
================
*/
void FS_Init( void ) {
- Com_Printf( "---------- FS_Init ----------\n" );
+ Com_Printf( "------- FS_Init -------\n" );
Cmd_Register( c_fs );
@@ -3042,6 +3042,6 @@ void FS_Init( void ) {
fs_game->changed = fs_game_changed;
fs_game_changed( fs_game );
- Com_Printf( "-----------------------------\n" );
+ Com_Printf( "-----------------------\n" );
}
diff --git a/src/gl_main.c b/src/gl_main.c
index ff4e1b6..3cf3e0a 100644
--- a/src/gl_main.c
+++ b/src/gl_main.c
@@ -850,7 +850,8 @@ qboolean R_Init( qboolean total ) {
return qtrue;
}
- Com_Printf( "ref_gl " VERSION ", " __DATE__ "\n" );
+ Com_Printf( "------- R_Init -------\n" );
+ Com_DPrintf( "ref_gl " VERSION ", " __DATE__ "\n" );
// initialize OS-specific parts of OpenGL
// create the window and set up the context
@@ -893,7 +894,7 @@ qboolean R_Init( qboolean total ) {
Com_WPrintf( "tess.vertices not 16 byte aligned\n" );
}
- Com_DPrintf( "Finished GL_Init\n" );
+ Com_Printf( "----------------------\n" );
return qtrue;