home · contact · privacy
Client: Renamed some world members, commented world struct.
[plomrogue] / src / client / main.c
index 2b6c18ad72f50284d6399431f6b5615c8f94c172..3abb44a13ad889e67253e38e9b24590cbf4713a4 100644 (file)
@@ -34,11 +34,11 @@ int main(int argc, char * argv[])
     set_cleanup_func(cleanup);
 
     /* Initialize the whole interface. */
-    world.windb.t_screen = initscr();
+    world.winDB.t_screen = initscr();
     set_cleanup_flag(CLEANUP_NCURSES);
     noecho();
     curs_set(0);
-    keypad(world.windb.t_screen, TRUE);
+    keypad(world.winDB.t_screen, TRUE);
     init_command_db();      /* The command DB needs to be initialized before  */
     load_interface_conf();  /* the interface, whose keybindings depend on it. */