Roll back R8811 check in for it will get a double carriage return.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8922 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy 2009-07-13 08:10:12 +00:00
parent ebe8d2ba8d
commit 2f6e236c2e
1 changed files with 0 additions and 10 deletions

View File

@ -82,7 +82,6 @@ CHAR16 mSetModeString[] = { ESC, '[', '=', '3', 'h', 0 };
CHAR16 mSetAttributeString[] = { ESC, '[', '0', 'm', ESC, '[', '4', '0', 'm', ESC, '[', '4', '0', 'm', 0 };
CHAR16 mClearScreenString[] = { ESC, '[', '2', 'J', 0 };
CHAR16 mSetCursorPositionString[] = { ESC, '[', '0', '0', ';', '0', '0', 'H', 0 };
CHAR16 mCrLfString[] = { CHAR_CARRIAGE_RETURN, CHAR_LINEFEED, CHAR_NULL };
//
// Body of the ConOut functions
@ -310,15 +309,6 @@ TerminalConOutOutputString (
Mode->CursorColumn = 0;
if (Mode->CursorRow < (INT32) (MaxRow - 1)) {
Mode->CursorRow++;
} else {
//
// Cursor has reached at MaxRow and MaxColumn,
// output carriage return and line feed to scroll screen
// when string is not control string.
//
if (!TerminalDevice->OutputEscChar) {
This->OutputString (This, mCrLfString);
}
}
}