summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorForkk <forkk@forkk.net>2014-05-09 18:21:15 -0500
committerForkk <forkk@forkk.net>2014-05-09 18:21:15 -0500
commit489cb4dbf597818ea2dc463961cc86e7c1261412 (patch)
tree20cf922e23330c01fb401ebd5d4c7cef65502dd7
parente3b9b3030240b0cf1454fdf1dea1705ae7e3865b (diff)
downloadMultiMC-489cb4dbf597818ea2dc463961cc86e7c1261412.tar
MultiMC-489cb4dbf597818ea2dc463961cc86e7c1261412.tar.gz
MultiMC-489cb4dbf597818ea2dc463961cc86e7c1261412.tar.lz
MultiMC-489cb4dbf597818ea2dc463961cc86e7c1261412.tar.xz
MultiMC-489cb4dbf597818ea2dc463961cc86e7c1261412.zip
Change dump file extension
-rw-r--r--UnixCrash.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/UnixCrash.cpp b/UnixCrash.cpp
index 8b5a9868..151c0ef3 100644
--- a/UnixCrash.cpp
+++ b/UnixCrash.cpp
@@ -20,10 +20,10 @@
#define BT_SIZE 20
-#define DUMPF_NAME_FMT "mmc-crash-%X.dump\0"
-// 1234567890 123456
+#define DUMPF_NAME_FMT "mmc-crash-%X.bm\0" // Black magic? Bowel movement? Dump?
+// 1234567890 1234
// The maximum number of digits in a unix timestamp when encoded in hexadecimal is about 17.
-// Our format string is ~16 characters long.
+// Our format string is ~14 characters long.
// The maximum length of the dump file's filename should be well over both of these. 42 is a good number.
#define DUMPF_NAME_LEN 42