We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab2e696 commit bc63421Copy full SHA for bc63421
Doom/m_menu.pas
@@ -805,6 +805,7 @@ procedure M_SetupNextMenu(menudef: Pmenu_t);
805
od_allowautomaprotate,
806
od_texturedautomap,
807
od_automapgrid,
808
+ od_automapstats,
809
od_automapplayertrace,
810
od_automap_empty1,
811
optdispautomap_end
@@ -5768,6 +5769,14 @@ procedure M_InitMenus;
5768
5769
pmi.pBoolVal := @automapgrid;
5770
pmi.alphaKey := 'g';
5771
5772
+ inc(pmi);
5773
+ pmi.status := 1;
5774
+ pmi.name := '!Display statistics';
5775
+ pmi.cmd := 'amdrawstats';
5776
+ pmi.routine := @M_BoolCmd;
5777
+ pmi.pBoolVal := @amdrawstats;
5778
+ pmi.alphaKey := 's';
5779
+
5780
inc(pmi);
5781
pmi.status := 2;
5782
pmi.name := '!Player trace distance';
0 commit comments