diff options
Diffstat (limited to '')
-rwxr-xr-x | client.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/client.c b/client.c index d77aeb7..74e3a6f 100755 --- a/client.c +++ b/client.c @@ -38,16 +38,18 @@ static void clientMessage(const struct ClientMessage *msg) { } static void clientMove(int8_t dx, int8_t dy) { - struct ClientMessage msg = { .type = CLIENT_MOVE }; - msg.data.m.dx = dx; - msg.data.m.dy = dy; + struct ClientMessage msg = { + .type = CLIENT_MOVE, + .data.m = { .dx = dx, .dy = dy }, + }; clientMessage(&msg); } static void clientPut(uint8_t color, char cell) { - struct ClientMessage msg = { .type = CLIENT_PUT }; - msg.data.p.color = color; - msg.data.p.cell = cell; + struct ClientMessage msg = { + .type = CLIENT_PUT, + .data.p = { .color = color, .cell = cell }, + }; clientMessage(&msg); } |