1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-06 05:00:25 +00:00

replace use of GNU old-style field designator extensions

This commit is contained in:
Kalamatee
2025-07-15 07:43:58 +01:00
committed by deadwood
parent f3d727c826
commit b0da8860b6

View File

@ -1,5 +1,5 @@
/*
Copyright (C) 2010-2017, The AROS Development Team. All rights reserved.
Copyright (C) 2010-2025, The AROS Development Team. All rights reserved.
*/
/*
@ -170,9 +170,9 @@ static BOOL HIDDCompositorTopBitMapChanged(struct HIDDCompositorData * compdata,
/* Get width and height of mode */
struct pHidd_Gfx_GetMode __getmodemsg =
{
modeID: modeid,
syncPtr: &sync,
pixFmtPtr: &pf,
.modeID = modeid,
.syncPtr = &sync,
.pixFmtPtr = &pf,
}, *getmodemsg = &__getmodemsg;
getmodemsg->mID = OOP_GetMethodID(IID_Hidd_Gfx, moHidd_Gfx_GetMode);