summaryrefslogtreecommitdiff
path: root/src/wizard1.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-10 19:11:13 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-10 19:32:02 +0100
commitfc7620691b3dff4b502042d889fd75bb85170c16 (patch)
tree372f8a18d127d06127b51bb3601ffdf97c8bbff8 /src/wizard1.c
parent3d46b09fe21dfdea43b0e4e224363ecb67a0fb9b (diff)
Refactor version string construction to a function.
Diffstat (limited to 'src/wizard1.c')
-rw-r--r--src/wizard1.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/src/wizard1.c b/src/wizard1.c
index 04c5fb0b..226d1be7 100644
--- a/src/wizard1.c
+++ b/src/wizard1.c
@@ -392,8 +392,7 @@ static void spoil_obj_desc(cptr fname)
/* Header */
- sprintf(buf, "Basic Items Spoilers for %s %ld.%ld.%ld%s",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ sprintf(buf, "Basic Items Spoilers for %s", get_version_string());
spoiler_underline(buf);
spoiler_blanklines(2);
@@ -1118,8 +1117,7 @@ static void print_header(void)
{
char buf[80];
- sprintf(buf, "Artifact Spoilers for %s %ld.%ld.%ld%s",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ sprintf(buf, "Artifact Spoilers for %s", get_version_string());
spoiler_underline(buf);
}
@@ -1376,8 +1374,7 @@ static void spoil_mon_desc(cptr fname)
C_MAKE(who, max_r_idx, s16b);
/* Dump the header */
- sprintf(buf, "Monster Spoilers for %s %ld.%ld.%ld%s",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ sprintf(buf, "Monster Spoilers for %s", get_version_string());
spoiler_underline(buf);
spoiler_blanklines(2);
@@ -1522,8 +1519,7 @@ static void spoil_mon_info(cptr fname)
/* Dump the header */
- sprintf(buf, "Monster Spoilers for %s %ld.%ld.%ld%s",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ sprintf(buf, "Monster Spoilers for %s", get_version_string());
spoiler_underline(buf);
spoiler_blanklines(2);
@@ -2485,9 +2481,9 @@ static void spoil_bateries(cptr fname)
"|||||oy\n"
"~~~~~01|Spoilers|Essences\n"
"~~~~~02|Alchemist|Essence Spoiler\n"
- "#####REssence Spoiler for %s %ld.%ld.%ld%s\n"
+ "#####REssence Spoiler for %s\n"
"#####R-----------------------------------\n\n",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ get_version_string());
/*New code starts here -*/
@@ -2687,8 +2683,7 @@ static void spoil_spells(cptr fname)
}
/* Dump the header */
- sprintf(buf, "Spell Spoiler (Skill Level 50) for %s %ld.%ld.%ld%s",
- game_module, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, IS_CVS);
+ sprintf(buf, "Spell Spoiler (Skill Level 50) for %s", get_version_string());
spoiler_underline(buf);
/* Dump the bookless magic powers in alphabetical order */