• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

patch投げ用


Commit MetaInfo

Revisionfed2f972ecd615401fcd2b5eb590a09e8f9a14cf (tree)
Zeit2016-02-14 01:46:50
AutorSHIRAKATA Kentaro <argrath@ub32...>
CommiterSHIRAKATA Kentaro

Log Message

patch sys/share

Ändern Zusammenfassung

Diff

--- a/sys/share/pcmain.c
+++ b/sys/share/pcmain.c
@@ -508,15 +508,24 @@ attempt_restore:
508508 iflags.news = FALSE;
509509 }
510510 #endif
511+/*JP
511512 pline("Restoring save file...");
513+*/
514+ pline("セーブファイルを復元中...");
512515 mark_synch(); /* flush output */
513516
514517 if (dorecover(fd)) {
515518 resuming = TRUE; /* not starting new game */
516519 if (discover)
520+/*JP
517521 You("are in non-scoring discovery mode.");
522+*/
523+ pline("発見モードではスコアはのらないよ.");
518524 if (discover || wizard) {
525+/*JP
519526 if (yn("Do you want to keep the save file?") == 'n')
527+*/
528+ if (yn("セーブファイルを残しておきますか?") == 'n')
520529 (void) delete_savefile();
521530 else {
522531 nh_compress(fqname(SAVEF, SAVEPREFIX, 0));
@@ -545,7 +554,10 @@ attempt_restore:
545554 }
546555 newgame();
547556 if (discover)
557+/*JP
548558 You("are in non-scoring discovery mode.");
559+*/
560+ pline("発見モードではスコアはのらないよ.");
549561 }
550562
551563 #ifndef NO_SIGNAL
--- a/sys/share/pcunix.c
+++ b/sys/share/pcunix.c
@@ -277,7 +277,10 @@ regularize(s)
277277 */
278278 register char *s;
279279 {
280+/*JP
280281 register char *lp;
282+*/
283+ register unsigned char *lp;
281284
282285 for (lp = s; *lp; lp++)
283286 if (*lp <= ' ' || *lp == '"' || (*lp >= '*' && *lp <= ',')