• R/O
  • HTTP
  • SSH
  • HTTPS

hengbandosx: Commit

The master and develop branches track hengband.

OS X development happens on the macos-1-6-2, macos-2-2-1, and macos-develop branches.


Commit MetaInfo

Revision52328d7110fda6c7fcac2ee4af21907d47236e66 (tree)
Zeit2021-01-25 23:09:26
Autordeskull <deskull@user...>
Commiterdeskull

Log Message

Merge remote-tracking branch 'remotes/origin/feature/Fix-Spell-Info-Garbled' into develop

Ändern Zusammenfassung

Diff

--- a/src/cmd-action/cmd-spell.c
+++ b/src/cmd-action/cmd-spell.c
@@ -63,6 +63,13 @@
6363 #include "locale/japanese.h"
6464 #endif
6565
66+concptr KWD_DAM = _("損傷:", "dam ");
67+concptr KWD_RANGE = _("射程:", "rng ");
68+concptr KWD_DURATION = _("期間:", "dur ");
69+concptr KWD_SPHERE = _("範囲:", "range ");
70+concptr KWD_HEAL = _("回復:", "heal ");
71+concptr KWD_RANDOM = _("ランダム", "random");
72+
6673 /*!
6774 * 魔法領域フラグ管理テーブル /
6875 * Zangband uses this array instead of the spell flags table, as there
--- a/src/cmd-action/cmd-spell.h
+++ b/src/cmd-action/cmd-spell.h
@@ -2,12 +2,12 @@
22
33 #include "system/angband.h"
44
5-#define KWD_DAM _("損傷:", "dam ")
6-#define KWD_RANGE _("射程:", "rng ")
7-#define KWD_DURATION _("期間:", "dur ")
8-#define KWD_SPHERE _("範囲:", "range ")
9-#define KWD_HEAL _("回復:", "heal ")
10-#define KWD_RANDOM _("ランダム", "random")
5+extern concptr KWD_DAM;
6+extern concptr KWD_RANGE;
7+extern concptr KWD_DURATION;
8+extern concptr KWD_SPHERE;
9+extern concptr KWD_HEAL;
10+extern concptr KWD_RANDOM;
1111
1212 extern const u32b fake_spell_flags[4];
1313
Show on old repository browser