From dd0d4419e72c03eb0dc6b6d1575b728f77a1d03b Mon Sep 17 00:00:00 2001 From: qwertymodo Date: Mon, 7 Nov 2016 11:28:33 -0800 Subject: [PATCH] Use escaped backslash for win32 paths. --- port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port.h b/port.h index 7a806e69..2378057c 100644 --- a/port.h +++ b/port.h @@ -325,7 +325,7 @@ void SetInfoDlgColor(unsigned char, unsigned char, unsigned char); #endif // __WIN32_LIBSNES__ #endif // __WIN32__ -#ifdef __DJGPP +#if defined(__DJGPP) || defined(__WIN32__) #define SLASH_STR "\\" #define SLASH_CHAR '\\' #else