OSDN Git Service

To be more idiomatic, drop "was" from English message for death of dragon centipedes.
[hengband/hengband.git] / src / term / gameterm.c
index 630d445..9781696 100644 (file)
@@ -1,7 +1,8 @@
 #include "term/gameterm.h"
 #include "system/system-variables.h"
 #include "term/term-color-types.h"
-#include "util/util.h"
+#include "util/quarks.h"
+#include "util/string-processor.h"
 
  /*
  * Convert an "attr"/"char" pair into a "pict" (P)
@@ -351,7 +352,7 @@ const concptr ident_info[] =
 /*
  * The array of window pointers
  */
-term *angband_term[8];
+term_type *angband_term[8];
 
 /*!
  * スクリーン表示色キャラクタ /
@@ -494,7 +495,7 @@ static TERM_COLOR spell_color(EFFECT_ID type)
                c = s[randint0(strlen(s))];
 
                /* Lookup this color */
-               a = my_strchr(color_char, c) - color_char;
+               a = angband_strchr(color_char, c) - color_char;
 
                /* Invalid color (note check for < 0 removed, gave a silly
                 * warning because bytes are always >= 0 -- RG) */