From a236d63e6de87ea8271187c1d7292af08f572b15 Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Tue, 23 Apr 2024 20:23:03 +0300 Subject: [PATCH] Use M_TempFile win32 code also on DJGPP --- doomgeneric/m_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomgeneric/m_misc.c b/doomgeneric/m_misc.c index 53b86db..54b2613 100644 --- a/doomgeneric/m_misc.c +++ b/doomgeneric/m_misc.c @@ -168,7 +168,7 @@ char *M_TempFile(char *s) { char *tempdir; -#ifdef _WIN32 +#if defined(_WIN32) || defined(__DJGPP__) // Check the TEMP environment variable to find the location. -- 2.54.0