Skip to content

Commit

Permalink
バージョン表記 修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguband committed Sep 18, 2018
1 parent 19b0e84 commit 5f444fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cmd4.c
Original file line number Diff line number Diff line change
Expand Up @@ -3975,10 +3975,10 @@ void do_cmd_version(void)
/* Silly message */

#if FAKE_VER_EXTRA > 0
msg_format(_("短愚蛮怒(Hengband) %d.%d.%d.%d", "You are playing Hengband %d.%d.%d.%d."),
msg_format(_("短愚蛮怒(tanguband) %d.%d.%d.%d", "You are playing Hengband %d.%d.%d.%d."),
FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH, FAKE_VER_EXTRA);
#else
msg_format(_("短愚蛮怒(Hengband) %d.%d.%d", "You are playing Hengband %d.%d.%d."),
msg_format(_("短愚蛮怒(tanguband) %d.%d.%d", "You are playing Hengband %d.%d.%d."),
FAKE_VER_MAJOR - 10, FAKE_VER_MINOR, FAKE_VER_PATCH);
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#define FAKE_VER_MAJOR 28 /*!< ゲームのバージョン番号定義(メジャー番号 + 10) */
#define FAKE_VER_MINOR 9 /*!< ゲームのバージョン番号定義(マイナー番号) */
#define FAKE_VER_PATCH 19 /*!< ゲームのバージョン番号定義(パッチ番号) */
#define FAKE_VER_EXTRA 1 /*!< ゲームのバージョン番号定義(エクストラ番号) */
#define FAKE_VER_EXTRA 0 /*!< ゲームのバージョン番号定義(エクストラ番号) */


/*!
Expand Down

0 comments on commit 5f444fc

Please sign in to comment.