mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fix double-spaced output in crash report
svn path=/trunk/; revision=12080
This commit is contained in:
parent
b2a1d58158
commit
6d6f09144e
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: pcvideo.c,v 1.2 2004/11/23 11:28:02 gvg Exp $
|
/* $Id: pcvideo.c,v 1.3 2004/12/13 15:07:33 gvg Exp $
|
||||||
*
|
*
|
||||||
* FreeLoader
|
* FreeLoader
|
||||||
*
|
*
|
||||||
|
@ -1055,7 +1055,7 @@ PcVideoPutChar(int Ch, U8 Attr, unsigned X, unsigned Y)
|
||||||
{
|
{
|
||||||
U16 *BufPtr;
|
U16 *BufPtr;
|
||||||
|
|
||||||
BufPtr = (U16 *) (VIDEOTEXT_MEM_ADDRESS + (Y * BytesPerScanLine + X) * 2);
|
BufPtr = (U16 *) (VIDEOTEXT_MEM_ADDRESS + Y * BytesPerScanLine + X * 2);
|
||||||
*BufPtr = ((U16) Attr << 8) | (Ch & 0xff);
|
*BufPtr = ((U16) Attr << 8) | (Ch & 0xff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue