util: fix typo preventing 4-byte copy in blit()
This commit is contained in:
parent
ae23a3223f
commit
8401139089
1 changed files with 1 additions and 1 deletions
2
util.c
2
util.c
|
@ -384,7 +384,7 @@ blit(Ref rdst, uint doff, Ref rsrc, uint sz, Fn *fn)
|
|||
{
|
||||
struct { int st, ld, cls, size; } *p, tbl[] = {
|
||||
{ Ostorel, Oload, Kl, 8 },
|
||||
{ Ostorew, Oload, Kw, 8 },
|
||||
{ Ostorew, Oload, Kw, 4 },
|
||||
{ Ostoreh, Oloaduh, Kw, 2 },
|
||||
{ Ostoreb, Oloadub, Kw, 1 }
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue