d3dxof: Remove useless casts.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a777fd85cb
commit
9781b5433c
@ -1208,13 +1208,13 @@ static BOOL parse_object_members_list(parse_buffer * buf)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
if (pt->members[i].type == TOKEN_WORD)
|
if (pt->members[i].type == TOKEN_WORD)
|
||||||
{
|
{
|
||||||
*(((WORD*)(buf->pdata + buf->cur_pos_data))) = (WORD)(*(DWORD*)buf->value);
|
*(WORD *)(buf->pdata + buf->cur_pos_data) = *(DWORD *)buf->value;
|
||||||
buf->cur_pos_data += 2;
|
buf->cur_pos_data += 2;
|
||||||
}
|
}
|
||||||
else if (pt->members[i].type == TOKEN_DWORD)
|
else if (pt->members[i].type == TOKEN_DWORD)
|
||||||
{
|
{
|
||||||
*(((DWORD*)(buf->pdata + buf->cur_pos_data))) = (DWORD)(*(DWORD*)buf->value);
|
*(DWORD *)(buf->pdata + buf->cur_pos_data) = *(DWORD *)buf->value;
|
||||||
buf->cur_pos_data += 4;
|
buf->cur_pos_data += 4;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -1230,8 +1230,8 @@ static BOOL parse_object_members_list(parse_buffer * buf)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
if (pt->members[i].type == TOKEN_FLOAT)
|
if (pt->members[i].type == TOKEN_FLOAT)
|
||||||
{
|
{
|
||||||
*(((float*)(buf->pdata + buf->cur_pos_data))) = (float)(*(float*)buf->value);
|
*(float *)(buf->pdata + buf->cur_pos_data) = *(float *)buf->value;
|
||||||
buf->cur_pos_data += 4;
|
buf->cur_pos_data += 4;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user