]> granicus.if.org Git - nethack/commitdiff
Remove last mention of EXP_ON_BOTL
authorPasi Kallinen <paxed@alt.org>
Sun, 1 Mar 2015 08:26:24 +0000 (10:26 +0200)
committerPasi Kallinen <paxed@alt.org>
Sun, 1 Mar 2015 08:26:24 +0000 (10:26 +0200)
dat/opthelp
win/Qt/qt_win.cpp

index f6759e04dda06cd60a76c0e74fb5b2d4085d81f3..836e33d871be5c365e504ad71a9866b896c35f93 100644 (file)
@@ -30,6 +30,7 @@ pushweapon     when wielding a new weapon, put your previously
 rawio          allow the use of raw I/O                           [FALSE]
 rest_on_space  count the space bar as a rest character            [FALSE]
 safe_pet       prevent you from (knowingly) attacking your pet(s) [TRUE]
+showexp        display your accumulated experience points         [FALSE]
 showrace       show yourself by your race rather than by role     [FALSE]
 silent         don't use your terminal's bell sound               [TRUE]
 sortpack       group similar kinds of objects in inventory        [TRUE]
@@ -61,8 +62,6 @@ news       print any news from game administrator on startup      [TRUE]
 Boolean option if MFLOPPY was set at compile time:
 checkspace check free disk space before writing files to disk     [TRUE]
 
-Boolean option if EXP_ON_BOTL was set at compile time:
-showexp    display your accumulated experience points             [FALSE]
 
 Boolean option if SCORE_ON_BOTL was set at compile time:
 showscore  display your approximate accumulated score             [FALSE]
index 16ff7873b5ec78c41e4244f4001e1bce455cfe26..110f3475686c43c6a8abfd407421e83abbba3c22 100644 (file)
@@ -2567,11 +2567,9 @@ void NetHackQtStatusWindow::updateStats()
     Sprintf(buf, "/%d", u.uenmax);
     power.setLabel("Pow:",u.uen,buf);
     ac.setLabel("AC:",(long)u.uac);
-#ifdef EXP_ON_BOTL
     if (::flags.showexp) {
        exp.setLabel("Exp:",(long)u.uexp);
     } else
-#endif
     {
        exp.setLabel("");
     }