summaryrefslogtreecommitdiff
path: root/src/doomtype.h
diff options
context:
space:
mode:
authorSimon Howard2014-03-30 18:07:52 -0400
committerSimon Howard2014-03-30 18:09:07 -0400
commit71d8ef248f4f1a05646f5e1e7e6388a59f08b121 (patch)
tree27aa543016b37eec74e99b49d309f235f6ecdc29 /src/doomtype.h
parent724c4ad7a4f2a541eff157d9196b3835eb4bc8d8 (diff)
downloadchocolate-doom-71d8ef248f4f1a05646f5e1e7e6388a59f08b121.tar.gz
chocolate-doom-71d8ef248f4f1a05646f5e1e7e6388a59f08b121.tar.bz2
chocolate-doom-71d8ef248f4f1a05646f5e1e7e6388a59f08b121.zip
Eliminate some uses of sprintf() from common code.
As part of this, add DIR_SEPARATOR_S as a string version of the DIR_SEPARATOR macro. Change M_TempFile() to return a string allocated on the C heap rather than the zone heap. This is a first step towards fixing #371.
Diffstat (limited to 'src/doomtype.h')
-rw-r--r--src/doomtype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doomtype.h b/src/doomtype.h
index fdcdb66b..626d69a8 100644
--- a/src/doomtype.h
+++ b/src/doomtype.h
@@ -97,11 +97,13 @@ typedef uint8_t byte;
#ifdef _WIN32
#define DIR_SEPARATOR '\\'
+#define DIR_SEPARATOR_S "\\"
#define PATH_SEPARATOR ';'
#else
#define DIR_SEPARATOR '/'
+#define DIR_SEPARATOR_S "/"
#define PATH_SEPARATOR ':'
#endif