home · contact · privacy
Minor code restyling. Important: Renamed win->curses_win to win->curses.
[plomrogue] / windows.h
index 01919310961938cde80e937d63c030796f7c5fb5..779a672ec0f1348016b13ccab09c5d7c42307bc8 100644 (file)
--- a/windows.h
+++ b/windows.h
@@ -13,7 +13,7 @@ struct Win {
   struct Win * next;
   int width;
   int height;
-  WINDOW * curses_win;
+  WINDOW * curses;
   char * title;
   void (* draw) (struct Win *);
   void * data; };