X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=console.c;h=297bcb23f43249645a595bb331eb8bd35291e554;hb=400e4a34bbef54082e7d39758fa5aa7ab1b654c7;hp=c3ce5a1b2eb4fe736d4626dbd763f5d4ff5271f3;hpb=468db062ea41a78210871ea5b2d53c01f9cab190;p=xonotic%2Fdarkplaces.git diff --git a/console.c b/console.c index c3ce5a1b..297bcb23 100644 --- a/console.c +++ b/console.c @@ -23,8 +23,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #endif #ifndef _MSC_VER +#ifndef __BORLANDC__ #include #endif +#endif #ifdef WIN32 #include #endif @@ -166,7 +168,7 @@ void Con_CheckResize (void) if (width < 1) // video hasn't been initialized yet { - width = 38; + width = 78; // LordHavoc: changed from 38 to 78 (320 -> 640 conversion) con_linewidth = width; con_totallines = CON_TEXTSIZE / con_linewidth; memset (con_text, ' ', CON_TEXTSIZE);