changeset 558:7b7872212afd

Use \ directory separator for DOS as well.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 05 Jan 2020 10:47:04 +0200
parents 5c3697bfefa3
children 6021ef8fc341
files th_file.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/th_file.h	Sun Jan 05 10:45:33 2020 +0200
+++ b/th_file.h	Sun Jan 05 10:47:04 2020 +0200
@@ -17,7 +17,7 @@
 #endif
 
 // Platform specific defines
-#if defined(TH_PLAT_WINDOWS)
+#if defined(TH_PLAT_WINDOWS) || defined(TH_PLAT_DOS)
 #    define TH_DIR_SEPARATOR_CHR '\\'
 #    define TH_DIR_SEPARATOR_STR "\\"
 #else