From 59ab23324877f57fa074ca8c301ff118c0b6192d Mon Sep 17 00:00:00 2001 From: nothere Date: Mon, 12 Jul 2004 05:03:37 +0000 Subject: [PATCH] =?utf8?q?=E3=83=80=E3=83=B3=E3=83=97=E3=81=AE=E3=82=BB?= =?utf8?q?=E3=82=AF=E3=82=B7=E3=83=A7=E3=83=B3=E9=96=93=E3=81=AE=E6=94=B9?= =?utf8?q?=E8=A1=8C=E3=81=AE=E8=AA=BF=E6=95=B4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/files.c | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/src/files.c b/src/files.c index d94fa9e19..f3d990bb7 100644 --- a/src/files.c +++ b/src/files.c @@ -4117,9 +4117,9 @@ static void dump_aux_pet(FILE *fff) if (!pet) { #ifdef JP - fprintf(fff, "\n [¼ç¤Ê¥Ú¥Ã¥È]\n\n"); + fprintf(fff, "\n\n [¼ç¤Ê¥Ú¥Ã¥È]\n\n"); #else - fprintf(fff, "\n [Leading Pets]\n\n"); + fprintf(fff, "\n\n [Leading Pets]\n\n"); #endif pet = TRUE; } @@ -4127,14 +4127,12 @@ static void dump_aux_pet(FILE *fff) fprintf(fff, "%s\n", pet_name); } - if (pet) fprintf(fff, "\n"); - if (pet_settings) { #ifdef JP - fprintf(fff, "\n [¥Ú¥Ã¥È¤Ø¤ÎÌ¿Îá]\n"); + fprintf(fff, "\n\n [¥Ú¥Ã¥È¤Ø¤ÎÌ¿Îá]\n"); #else - fprintf(fff, "\n [Command for Pets]\n"); + fprintf(fff, "\n\n [Command for Pets]\n"); #endif #ifdef JP @@ -4173,7 +4171,7 @@ static void dump_aux_pet(FILE *fff) fprintf(fff, "\n Allow involve player in area spell: %s", (p_ptr->pet_extra_flags & PF_BALL_SPELL) ? "ON" : "OFF"); #endif - fputs("\n\n", fff); + fputc('\n', fff); } } @@ -4199,9 +4197,9 @@ static void dump_aux_class_special(FILE *fff) for (i=0;i<60;i++) { p[i][0] = '\0'; } #ifdef JP - strcat(p[col], "\n [³Ø½¬ºÑ¤ß¤ÎÀÄËâË¡]\n"); + strcat(p[col], "\n\n [³Ø½¬ºÑ¤ß¤ÎÀÄËâË¡]\n"); #else - strcat(p[col], "\n [Learned Blue Magic]\n"); + strcat(p[col], "\n\n [Learned Blue Magic]\n"); #endif @@ -4349,6 +4347,7 @@ static void dump_aux_quest(FILE *fff) do_cmd_knowledge_quests_completed(fff, quest_num); fputc('\n', fff); do_cmd_knowledge_quests_failed(fff, quest_num); + fputc('\n', fff); /* Free Memory */ C_KILL(quest_num, max_quests, int); @@ -4375,7 +4374,7 @@ static void dump_aux_last_message(FILE *fff) { fprintf(fff,"> %s\n",message_str((s16b)i)); } - fprintf(fff, "\n"); + fputc('\n', fff); } /* Hack -- *Winning* message */ @@ -4387,6 +4386,7 @@ static void dump_aux_last_message(FILE *fff) fprintf(fff, "\n [*Winning* Message]\n\n"); #endif fprintf(fff," %s\n", p_ptr->last_message); + fputc('\n', fff); } } } @@ -4400,9 +4400,9 @@ static void dump_aux_recall(FILE *fff) int y; #ifdef JP - fprintf(fff, "\n\n [µ¢´Ô¾ì½ê]\n\n"); + fprintf(fff, "\n [µ¢´Ô¾ì½ê]\n\n"); #else - fprintf(fff, "\n\n [Recall Depth]\n\n"); + fprintf(fff, "\n [Recall Depth]\n\n"); #endif for (y = 1; y < max_d_idx; y++) @@ -4551,16 +4551,16 @@ static void dump_aux_options(FILE *fff) #endif - fprintf(fff,"\n"); + fputc('\n', fff); if (p_ptr->noscore) #ifdef JP - fprintf(fff, "\n ²¿¤«ÉÔÀµ¤Ê¤³¤È¤ò¤·¤Æ¤·¤Þ¤Ã¤Æ¤¤¤Þ¤¹¡£"); + fprintf(fff, "\n ²¿¤«ÉÔÀµ¤Ê¤³¤È¤ò¤·¤Æ¤·¤Þ¤Ã¤Æ¤¤¤Þ¤¹¡£\n"); #else - fprintf(fff, "\n You have done something illegal."); + fprintf(fff, "\n You have done something illegal.\n"); #endif - fprintf(fff,"\n"); + fputc('\n', fff); } @@ -4771,6 +4771,8 @@ static void dump_aux_race_history(FILE *fff) fprintf(fff, "\n You were a %s before.", race_info[i].title); #endif } + + fputc('\n', fff); } } @@ -4784,6 +4786,7 @@ static void dump_aux_realm_history(FILE *fff) { int i; + fputc('\n', fff); for (i = 0; i < MAX_MAGIC; i++) { if (!(p_ptr->old_realm & 1L << i)) continue; @@ -4793,6 +4796,7 @@ static void dump_aux_realm_history(FILE *fff) fprintf(fff, "\n You were able to use %s magic before.", realm_names[i+1]); #endif } + fputc('\n', fff); } } @@ -4834,9 +4838,6 @@ static void dump_aux_mutations(FILE *fff) dump_mutations(fff); } - - /* Skip some lines */ - fprintf(fff, "\n\n"); } @@ -5003,6 +5004,7 @@ errr make_character_dump(FILE *fff) dump_aux_class_special(fff); dump_aux_mutations(fff); dump_aux_pet(fff); + fputs("\n\n", fff); dump_aux_equipment_inventory(fff); dump_aux_home_museum(fff); -- 2.11.0