OSDN Git Service

[Refactor] #37353 コメント整理。 / Refactor comments.
[hengband/hengband.git] / src / avatar.c
index f9c95e1..778e47b 100644 (file)
@@ -19,7 +19,7 @@
 /*!
  * 徳の名称 / The names of the virtues
  */
-cptr virtue[MAX_VIRTUE] =
+concptr virtue[MAX_VIRTUE] =
 {
        _("情", "Compassion"),
        _("誉", "Honour"),
@@ -490,7 +490,7 @@ void dump_virtues(FILE *OutFile)
 
        for (v_nr = 0; v_nr < 8; v_nr++)
        {
-               char vir_name [20];
+               GAME_TEXT vir_name [20];
                int tester = p_ptr->virtues[v_nr];
 
                strcpy(vir_name, virtue[(p_ptr->vir_types[v_nr])-1]);