From 7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 21 Aug 2018 22:46:18 -0400 Subject: Replace client with rudimentary CP437 support --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server.c') diff --git a/server.c b/server.c index ff13af3..3dedad8 100644 --- a/server.c +++ b/server.c @@ -254,7 +254,7 @@ static bool clientMove(struct Client *client, int8_t dx, int8_t dy) { return true; } -static bool clientPut(const struct Client *client, uint8_t color, char cell) { +static bool clientPut(const struct Client *client, uint8_t color, uint8_t cell) { struct Tile *tile = tileModify(client->tileX, client->tileY); tile->colors[client->cellY][client->cellX] = color; tile->cells[client->cellY][client->cellX] = cell; -- cgit 1.4.1