home · contact · privacy
Corrected broken if.
[plomrogue] / windows.h
index e3f4eb684fb21f4d5659fe816bfd7dc441df10ac..262c17602a6cd47bd3b4905406ec90803cdcf5ab 100644 (file)
--- a/windows.h
+++ b/windows.h
@@ -1,7 +1,11 @@
 struct WinMeta {
+  WINDOW * screen;
+  WINDOW * pad;
+  int pad_offset;
   struct Win * chain_start;
   struct Win * chain_end;
   struct Win * active;
+  int width;
   int height; };
 
 struct Win {