libdraw: fix typo: 0xfffff -> 0xffff

front
cinap_lenrek 2014-02-03 03:56:01 +01:00
parent 5fd52f6241
commit b5d47d6deb
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ allocscreen(Image *image, Image *fill, int public)
a = bufimage(d, 1+4+4+4+1);
if(a == 0)
break;
id = ++screenid & 0xfffff; /* old devdraw bug */
id = ++screenid & 0xffff; /* old devdraw bug */
a[0] = 'A';
BPLONG(a+1, id);
BPLONG(a+5, image->id);