]> granicus.if.org Git - nethack/commitdiff
transpose error in comments bit
authornhmall <nhmall@nethack.org>
Wed, 26 Feb 2020 20:03:58 +0000 (15:03 -0500)
committernhmall <nhmall@nethack.org>
Wed, 26 Feb 2020 20:03:58 +0000 (15:03 -0500)
include/hack.h

index 8c83195bf8c9b7d60e257af19c1dd21b1442e16e..5d0d134841d51a49ebcf36f224df1f76726a9a64 100644 (file)
@@ -505,8 +505,8 @@ enum optset_restrictions {
     set_in_config  = 1, /* config file option only */
     set_viaprog    = 2, /* may be set via extern program, not seen in game */
     set_gameview   = 3, /* may be set via extern program, displayed in game */
-    set_in_game    = 4, /* may be set set in the game if wizmode */
-    set_wizonly    = 5, /* may be set via extern program or set in the game */
+    set_in_game    = 4, /* may be set via extern program or set in the game */
+    set_wizonly    = 5, /* may be set set in the game if wizmode */
     set_hidden     = 6  /* placeholder for prefixed entries, never show it  */
 };
 #define SET__IS_VALUE_VALID(s) ((s < set_in_sysconf) || (s > set_wizonly))