mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
used macro for winsize in place of hardcoded number
svn path=/trunk/; revision=93
This commit is contained in:
parent
45a6e16434
commit
1302d0fe3b
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ static void putchar(char c)
|
|||
memcpy(vidmem,&vidmem[NR_COLUMNS*2],
|
||||
NR_COLUMNS*(NR_ROWS-1)*2);
|
||||
memset(&vidmem[NR_COLUMNS*(NR_ROWS-1)*2],0,NR_COLUMNS*2);
|
||||
cursory=24;
|
||||
cursory=NR_ROWS-1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue