diff options
author | June McEnroe <june@causal.agency> | 2019-01-04 11:01:49 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-04 11:01:49 -0500 |
commit | 4a270f301bbf2cf07c340e895cb79c226b9fb7fb (patch) | |
tree | 41f192825f5a1e03549c62c22c289c5e4014a954 /client.c | |
parent | Call cap_enter in client and server (diff) | |
download | torus-4a270f301bbf2cf07c340e895cb79c226b9fb7fb.tar.gz torus-4a270f301bbf2cf07c340e895cb79c226b9fb7fb.zip |
Restore old data format
Diffstat (limited to '')
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c index 6edcd6e..7f4c158 100644 --- a/client.c +++ b/client.c @@ -490,7 +490,7 @@ static void inputNormal(bool keyCode, wchar_t ch) { static void inputHelp(bool keyCode, wchar_t ch) { (void)keyCode; (void)ch; - if (tile.meta.createTime) drawTile(&tile); + if (tileMeta(&tile).createTime) drawTile(&tile); modeNormal(); } |