]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.h
R_SetSkyBox now takes a const char *
[xonotic/darkplaces.git] / console.h
index 1ba74e1eb6bf172cb6c35f6a6020184af4e32ee7..6f3a9f3a714733933a8959919766c456b46dcff8 100644 (file)
--- a/console.h
+++ b/console.h
@@ -18,21 +18,23 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 */
 
+#ifndef CONSOLE_H
+#define CONSOLE_H
+
 //
 // console
 //
 extern int con_totallines;
 extern int con_backscroll;
-extern qboolean con_forcedup;  // because no entities to refresh
 extern qboolean con_initialized;
-extern byte *con_chars;
-extern int     con_notifylines;                // scan lines to clear for notify lines
+extern qbyte *con_chars;
+extern int con_notifylines;            // scan lines to clear for notify lines
 
 void Con_DrawCharacter (int cx, int line, int num);
 
 void Con_CheckResize (void);
 void Con_Init (void);
-void Con_DrawConsole (int lines, qboolean drawinput);
+void Con_DrawConsole (int lines);
 void Con_Print (char *txt);
 void Con_Printf (char *fmt, ...);
 void Con_DPrintf (char *fmt, ...);
@@ -52,3 +54,5 @@ void Con_CompleteCommandLine(void);
 // formatted in columns on the console
 void Con_DisplayList(char **list);
 
+#endif
+