Commit 741844c6 authored by Eric Frias's avatar Eric Frias Committed by Alexandre Julliard

Fixed error writing control IDs in dialogex on sparc.

parent 8cd13776
......@@ -790,9 +790,7 @@ static res_t *dialogex2res(name_id_t *name, dialogex_t *dlgex)
put_word(res, ctrl->y);
put_word(res, ctrl->width);
put_word(res, ctrl->height);
put_word(res, ctrl->id);
/* FIXME: Pad is _NOT_ documented!?! */
put_pad(res);
put_dword(res, ctrl->id);
if(ctrl->ctlclass)
put_name_id(res, ctrl->ctlclass, TRUE, dlgex->lvc.language);
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment