summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/am_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/am_map.c')
-rw-r--r--apps/plugins/doom/am_map.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/doom/am_map.c b/apps/plugins/doom/am_map.c
index 8f04f0df30..eb4e13279e 100644
--- a/apps/plugins/doom/am_map.c
+++ b/apps/plugins/doom/am_map.c
@@ -41,7 +41,7 @@
41#include "p_spec.h" 41#include "p_spec.h"
42#include "am_map.h" 42#include "am_map.h"
43#include "dstrings.h" 43#include "dstrings.h"
44//#include "d_deh.h" // Ty 03/27/98 - externalizations 44#include "d_deh.h" // Ty 03/27/98 - externalizations
45#include "g_game.h" 45#include "g_game.h"
46#include "rockmacros.h" 46#include "rockmacros.h"
47 47
@@ -72,7 +72,7 @@ int mapcolor_sngl; // single player arrow color
72int mapcolor_plyr[4] = { 112, 88, 64, 176 }; // colors for player arrows in multiplayer 72int mapcolor_plyr[4] = { 112, 88, 64, 176 }; // colors for player arrows in multiplayer
73 73
74//jff 3/9/98 add option to not show secret sectors until entered 74//jff 3/9/98 add option to not show secret sectors until entered
75int map_secret_after=0; 75int map_secret_after;
76//jff 4/3/98 add symbols for "no-color" for disable and "black color" for black 76//jff 4/3/98 add symbols for "no-color" for disable and "black color" for black
77#define NC 0 77#define NC 0
78#define BC 247 78#define BC 247
@@ -702,33 +702,33 @@ boolean AM_Responder
702 automapmode ^= am_follow; // CPhipps - put all automap mode stuff into one enum 702 automapmode ^= am_follow; // CPhipps - put all automap mode stuff into one enum
703 f_oldloc.x = INT_MAX; 703 f_oldloc.x = INT_MAX;
704 // Ty 03/27/98 - externalized 704 // Ty 03/27/98 - externalized
705 plr->message = (automapmode & am_follow) ? AMSTR_FOLLOWON : AMSTR_FOLLOWOFF; 705 plr->message = (automapmode & am_follow) ? s_AMSTR_FOLLOWON : s_AMSTR_FOLLOWOFF;
706 } 706 }
707 else if (ch == key_map_grid) 707 else if (ch == key_map_grid)
708 { 708 {
709 automapmode ^= am_grid; // CPhipps 709 automapmode ^= am_grid; // CPhipps
710 // Ty 03/27/98 - *not* externalized 710 // Ty 03/27/98 - *not* externalized
711 plr->message = (automapmode & am_grid) ? AMSTR_GRIDON : AMSTR_GRIDOFF; 711 plr->message = (automapmode & am_grid) ? s_AMSTR_GRIDON : s_AMSTR_GRIDOFF;
712 } 712 }
713 else if (ch == key_map_mark) 713 else if (ch == key_map_mark)
714 { 714 {
715 // Ty 03/27/98 - *not* externalized 715 // Ty 03/27/98 - *not* externalized
716 snprintf(buffer, sizeof(buffer), "%s %d", AMSTR_MARKEDSPOT, markpointnum); 716 snprintf(buffer, sizeof(buffer), "%s %d", s_AMSTR_MARKEDSPOT, markpointnum);
717 plr->message = buffer; 717 plr->message = buffer;
718 AM_addMark(); 718 AM_addMark();
719 } 719 }
720 else if (ch == key_map_clear) 720 else if (ch == key_map_clear)
721 { 721 {
722 AM_clearMarks(); // Ty 03/27/98 - *not* externalized 722 AM_clearMarks(); // Ty 03/27/98 - *not* externalized
723 plr->message = AMSTR_MARKSCLEARED; // ^ 723 plr->message = s_AMSTR_MARKSCLEARED; // ^
724 } // | 724 } // |
725 else if (ch == key_map_rotate) { 725 else if (ch == key_map_rotate) {
726 automapmode ^= am_rotate; 726 automapmode ^= am_rotate;
727 plr->message = (automapmode & am_rotate) ? AMSTR_ROTATEON : AMSTR_ROTATEOFF; 727 plr->message = (automapmode & am_rotate) ? s_AMSTR_ROTATEON : s_AMSTR_ROTATEOFF;
728 } 728 }
729 else if (ch == key_map_overlay) { 729 else if (ch == key_map_overlay) {
730 automapmode ^= am_overlay; 730 automapmode ^= am_overlay;
731 plr->message = (automapmode & am_overlay) ? AMSTR_OVERLAYON : AMSTR_OVERLAYOFF; 731 plr->message = (automapmode & am_overlay) ? s_AMSTR_OVERLAYON : s_AMSTR_OVERLAYOFF;
732 } 732 }
733 else // phares 733 else // phares
734 { 734 {