use local var
This commit is contained in:
parent
ee5d236198
commit
9703d59b43
1 changed files with 2 additions and 2 deletions
|
@ -433,11 +433,11 @@ void blt_colorfill(
|
|||
|
||||
if (s >= 1024 * 200)
|
||||
{
|
||||
__stosb(dst, color, dst_p * dst_h);
|
||||
__stosb(dst, color, s);
|
||||
}
|
||||
else
|
||||
{
|
||||
memset(dst, color, dst_p * dst_h);
|
||||
memset(dst, color, s);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue