diff options
author | June McEnroe <june@causal.agency> | 2018-08-21 14:00:15 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-21 14:00:59 -0400 |
commit | d8c973966760095026218ab09be8d30eb9983e3b (patch) | |
tree | 9dff0fa40a56907d3740a4c2147d24174efeb40a /meta.c | |
parent | Remove spawns (diff) | |
download | torus-d8c973966760095026218ab09be8d30eb9983e3b.tar.gz torus-d8c973966760095026218ab09be8d30eb9983e3b.zip |
Shrink the torus and rearrange struct Tile
Diffstat (limited to '')
-rw-r--r-- | meta.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta.c b/meta.c index c913cf7..990928a 100644 --- a/meta.c +++ b/meta.c @@ -32,11 +32,11 @@ int main() { "%d,%d,%jd,%u,%jd,%u,%jd\n", i % TILE_COLS, i / TILE_COLS, - tile.createTime, - tile.modifyCount, - tile.modifyTime, - tile.accessCount, - tile.accessTime + tile.meta.createTime, + tile.meta.modifyCount, + tile.meta.modifyTime, + tile.meta.accessCount, + tile.meta.accessTime ); } } |