diff -r 0138f1b5a804 -r 86fbe8753a7c hedgewars/uConsole.pas --- a/hedgewars/uConsole.pas Sun Jan 27 20:47:30 2008 +0000 +++ b/hedgewars/uConsole.pas Mon Jan 28 17:11:19 2008 +0000 @@ -112,13 +112,13 @@ w:= cScreenWidth; h:= 4; end; -SDL_FillRect(Surface, @r, cConsoleSplitterColor); +//SDL_FillRect(Surface, @r, cConsoleSplitterColor); for y:= 0 to cConsoleHeight div 256 + 1 do for x:= 0 to cScreenWidth div 256 + 1 do DrawSprite(sprConsoleBG, x * 256, cConsoleHeight - 256 - y * 256, 0, Surface); for y:= 0 to cConsoleHeight div Fontz[fnt16].Height do - DXOutText(4, cConsoleHeight - (y + 2) * (Fontz[fnt16].Height + 2), fnt16, ConsoleLines[(CurrLine - 1 - y + cLinesCount) mod cLinesCount], Surface); -DXOutText(4, cConsoleHeight - Fontz[fnt16].Height - 2, fnt16, '> '+InputStr, Surface); + //DXOutText(4, cConsoleHeight - (y + 2) * (Fontz[fnt16].Height + 2), fnt16, ConsoleLines[(CurrLine - 1 - y + cLinesCount) mod cLinesCount], Surface); +//DXOutText(4, cConsoleHeight - Fontz[fnt16].Height - 2, fnt16, '> '+InputStr, Surface); end; procedure WriteToConsole(s: shortstring);