diff options
author | June McEnroe <june@causal.agency> | 2020-02-16 23:05:43 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-16 23:05:43 -0500 |
commit | b20be7cbad775ec2119e022ed8e4d225a488c90c (patch) | |
tree | caba6234d7027c5d2090f6482c23f5411abef3eb /ui.c | |
parent | Replace a lot of snprintf with a catf implementation (diff) | |
download | catgirl-b20be7cbad775ec2119e022ed8e4d225a488c90c.tar.gz catgirl-b20be7cbad775ec2119e022ed8e4d225a488c90c.zip |
Various small cleanups
Haven't really gone through ui.c yet.
Diffstat (limited to '')
-rw-r--r-- | ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c index aaa7b49..bcb1003 100644 --- a/ui.c +++ b/ui.c @@ -90,10 +90,10 @@ struct Window { }; static struct { - uint show; - uint swap; struct Window *ptrs[IDCap]; uint len; + uint show; + uint swap; } windows; static uint windowPush(struct Window *window) { |