This commit is contained in:
ceriel 1991-02-18 10:58:49 +00:00
parent 720d775582
commit af7686cd66

View file

@ -331,11 +331,11 @@ C_pt_ilb(l)
{ {
if (fit8u(l)) { if (fit8u(l)) {
put8(sp_ilb1); put8(sp_ilb1);
put8(l); put8((int)l);
} }
else { else {
put8(sp_ilb2); put8(sp_ilb2);
put16(l); put16((int)l);
} }
} }
@ -344,7 +344,7 @@ C_pt_dlb(l)
{ {
if (fit8u(l)) { if (fit8u(l)) {
put8(sp_dlb1); put8(sp_dlb1);
put8(l); put8((int)l);
} }
else { else {
put8(sp_dlb2); put8(sp_dlb2);