summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 3a185fad20..02843caaaf 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -30,17 +30,19 @@ std::string clean_string(std::string s, const std::string &tokill)
return (s);
}
+// [dshaligram] Use sprintf to compile on DOS without having to pull in
+// libutil.cc. The buffers used should be more than sufficient.
static std::string to_s(int num)
{
- char buf[20];
- snprintf(buf, sizeof buf, "%d", num);
+ char buf[100];
+ sprintf(buf, "%d", num);
return (buf);
}
static std::string to_sl(long num)
{
- char buf[20];
- snprintf(buf, sizeof buf, "%ld", num);
+ char buf[100];
+ sprintf(buf, "%ld", num);
return (buf);
}