Skip to content

Commit

Permalink
Works fine in Far 3.0 windowed mode
Browse files Browse the repository at this point in the history
  • Loading branch information
trexinc committed Apr 30, 2013
1 parent fd92c2e commit 96166ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion makeit/file_id.diz
@@ -1,3 +1,3 @@
Far 1.7b4+ plugin V1.34
Far 1.7b4+ plugin V1.35
Parse and navigate through compiler output
on errors and warnings.
4 changes: 2 additions & 2 deletions makeit/src/makeit.cpp
Expand Up @@ -129,8 +129,8 @@ static void InitLineBuf()
{
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE),&csbi);
screenwidth=csbi.dwSize.X;
screenheight=csbi.dwSize.Y;
screenwidth=/*csbi.dwSize.X*/csbi.srWindow.Right-csbi.srWindow.Left+1;
screenheight=/*csbi.dwSize.Y*/csbi.srWindow.Bottom-csbi.srWindow.Top+1;
if(linebufwidth!=screenwidth*4)
{
if(linebuf)delete linebuf;
Expand Down
2 changes: 2 additions & 0 deletions makeit/verhist.txt
@@ -1,3 +1,5 @@
1.35
! Works fine in Far 3.0 windowed mode
1.34
! Doesn't cause mouse to stop functioning in Far 3.0
1.33
Expand Down

0 comments on commit 96166ab

Please sign in to comment.