home · contact · privacy
Simplified client control library and interaction with it.
[plomrogue] / src / client / main.c
index 26ad72822063d95fe9ac3a10a258b11691e9450d..6a71592b20fd9293a5ee158d7f9b297900b799b9 100644 (file)
@@ -26,8 +26,8 @@ int main()
     /* Initialize the whole interface. */
     init_win_meta();
     keypad(world.wmeta.screen, TRUE);
-    init_command_db();
-    load_interface_conf();
+    init_command_db();      /* The command DB needs to be initialized before  */
+    load_interface_conf();  /* the interface, whose keybindings depend on it. */
 
     /* This is where most everything happens. */
     char * quit_msg = io_loop();